IntelliJ IDEA 2017.3 Help

Optimizing Imports

In this section:

Introduction

Sooner or later, some of the imported classes or packages become redundant to the code.

Typically, you have to stop what you are doing, scroll to the head of the file, find the unused imports, and remove them. It is rather easy to forget to remove imports when you remove usages.

IntelliJ IDEA provides the Optimize Imports feature, which enables you, whenever it is convenient, to remove unused imports from your current file, or from all files in the current directory at once. This helps you avoid unused, excessive and duplicating imports in your project.

One can remove unused import statements in the entire project or in the current file only.

Optimizing imports in project

To optimize imports in the entire project, follow these steps:

  1. Place the caret at the Project tool window and do one of the following:
    • On the main menu, choose Code | Optimize Imports.
    • On the context menus of the Project tool window, choose Optimize Imports.
    • Press Ctrl+Alt+O.

    The Optimize Imports dialog box opens.

  2. If your project is under version control, the option Only VCS changed files is enabled. Select or clear this option as required.
  3. Click Run.

Optimizing imports in the current file

One way of dealing with unused import is to use the quick-fix that appears when you set the caret at the highlighted unused import. However, you can optimize imports in a larger scope as described below.

To optimize imports in the currently opened file, do one of the following:

  • On the main menu, choose Code | Optimize Imports.
  • Press Ctrl+Alt+O.
  • Place the caret at the import statements, click intentionBulb, and choose Remove unused import.
  • Open the Reformat File Dialog (Ctrl+Shift+Alt+L) and select the Optimize imports checkbox.
Last modified: 6 March 2018

See Also