Reputation: 2058
In the Netbeans IDE, what precisely do the 'Fix Imports' and 'Organize Imports' do?
I have recently migrated from Eclipse, and I find the wording somewhat confusing. 'Fix Imports' in Netbeans seems to have the same function as 'Organize Imports' did in Eclipse. If this is the case, what is the function of the 'Organize Imports'?
I have tried googling the topic but I am just referred to an old Netbeans plugin of that name. Even the official Netbeans tutorial page only mentions 'Fix Imports'.
Upvotes: 1
Views: 2580
Reputation: 22963
"fix imports" --- add (and organize) missed imports
"organize imports" --- format the import statements as configured in "Tools" -> "Options", section "Editor": "Language" = "Java" and "Categroy" = "Imports"
Upvotes: 4