Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a way to remove unused imports in Intellij IDEA on commit?

It is not very optimal to do it manually, (CTRL + ALT + O) helps but it's still manual.

share|improve this question
1  
try ctrl + alt + l – T I Sep 25 '12 at 14:35

2 Answers

up vote 8 down vote accepted

When you commit, tick the Optimize imports option on the right. This will become the default until you change it.

I prefer using the Reformat code option as well.

share|improve this answer
1  
You can also set the option for "Optimize imports on the fly", under the Editor > Auto Import section – matt b Sep 25 '12 at 14:41
That is cool, but can drive you crazy if it imports the wrong class. – Peter Lawrey Sep 25 '12 at 14:43
that is what the second option for "Add unambiguous imports on the fly" is for :) You can disable the first and only enable the unambiguous setting. – matt b Sep 25 '12 at 14:44
True, but sometimes you use a class which is fine in one module but isn't in the dependencies of another and you end up including something under com.sun.* or sun.* – Peter Lawrey Sep 25 '12 at 14:47
Not sure if I follow what you mean, but both settings will only add imports for classes on the classpath. You can configure classes or packages to be excluded from automatic import also. – matt b Sep 25 '12 at 14:53
show 1 more comment

You can check checkbox in the commit dialog.

enter image description here

You can use settings to automatically optimize imports since 11.1 and above.

enter image description here

share|improve this answer
+1 for screenshots – Rytis I Oct 10 '12 at 8:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.