DEV Community

Cover image for Java Tips - How to get rid of unused import in Eclipse
javinpaul
javinpaul

Posted on

Java Tips - How to get rid of unused import in Eclipse

Disclosure: This post includes affiliate links; I may receive compensation if you purchase products or services from the different links provided in this article.

Hello guys, if you are a Java programmer and use Eclipse IDE for Java development then you might have noticed a lot of unused imports in your Java file while working on a legacy project. Eclipse IDE gives the warning** "The import XXX is never used"** whenever it detects an unused import in a Java source file and shows a yellow underline.

Though the unused import in a Java file does not create any harm, it's unnecessary to increase the length and size of a Java source file, and if you have too many unused imports in your Java source file, those yellow underlines and Eclipse warnings affect the readability of your code, at least it distracts you.

In my last post on Eclipse, we looked at some Java debugging tips on Eclipse.

In this post, you will learn some useful Eclipse shortcut to remove all unused imports from Java code in Eclipse.

There are many options to tackle this problem like you can collapse the import section of code in Eclipse or you can altogether remove all unused imports from the Java file, and we'll see them in this short tutorial.

If you are completely new to Eclipse IDE, then I suggest you to first go through a comprehensive course, like The Eclipse Guided Tour: Part 1 and 2 from Pluralsight, which will teach you everything you need to know about Eclipse from the Java development point of view.

best Eclipse course for Java developers

Anyway, let's see how to remove all unused imports from a Java file in Eclipse IDE.

How to Remove all Unused Imports From a Java File in Eclipse

How to Remove all Unused Imports From a Java File in Eclipse

The yellow underline on the above pic denotes all unused imports in a Java Source file

Here are a couple of ways to remove all unused imports from the Java Eclipse IDE :

1) Go to the line of unused import, press Ctrl + 1, which is an Eclipse shortcut of a quick fix. This will show a drop-down menu to fix this error and one of them will be "remove unused imports." It will remove that import statement from the Java file.

2) The above option is not very efficient if you want to remove multiple unused imports in a single click because it removes them one by one. It's better to use the "Organize Imports" feature of Eclipse IDE to remove multiple or all unused imports statement.

For using this form Menu, Select Source → Organize Imports. This will remove all unused imports from that Java file.

3) Third and my preferred option to remove all unused import statements from Java file is Ctrl + Shift + O, which is a shortcut of organized import in Eclipse, and you can say Eclipse shortcut to remove all unused import statement from the Java file.

This will also work with the previous option and remove all unused import lines from the source file.

Eclipse shortcuts to remove unused importst

Bonus Tip

Do you want a bonus Eclipse tip? If yes, then here you go: you can save all keystrokes required to remove all unused imports from Java source file by using Eclipse save actions, which are actions Eclipse automatically performs when you save Java file.

Just check the option of organized imports in saving action under Windows → Preferences-> Java → Editor → Save Actions. This saves a lot of time while working in Eclipse and is one of the reasons I love Eclipse IDE for Java programming.

You can also configure formatting and a few other actions, which will be taken by Eclipse automatically whenever you save your file. If you want to learn more about such features, I also suggest you take a look at Beginners Eclipse Java IDE Training Courseon Udemy. One of the better course to learn Eclipse IDE.

One more advantage of using Organize import or the shortcut Ctrl + Shift +O is that it imports all packages that are required by code.

So, it not only saves time while removing the import statement but it also helps to import required packages in Java.

It means that if you copy and paste the code and see lots of red lines, this is an error due to the non-imported packages. To fix this, use this Eclipse shortcut or save your source file if you have configured Eclipse save action to organize import.

That's all on Eclipse shortcuts for removing all unused import statements from a Java source file in Eclipse IDE. It's always good to learn more about the IDE on which you are working like IntelliJIDEA, Netbeans, or Eclipse, to improve productivity.

Further Learning

  1. Beginners Eclipse Java IDE Training Course
  2. Eclipse Debugging Techniques and Tricks
  3. The Eclipse Guided Tour: Part 1 and 2

Other Java Eclipse articles you may like to explore:

Since Eclipse is one of the popular Java IDE and many Java programmer, who like to do things fast loves to learn new shortcuts. If you also like to learn new shortcuts, then I suggest you check Top 30 Eclipse keyboard shortcut for Java programmer. This is one of the many Eclipse shortcuts I have shared there.

Once again, thanks for reading this article!. If you like this post, then please share it with your friends and colleagues. If you have any questions or feedback, then please drop a comment below.

Top comments (0)