Issue #1555: Delete unnecessary imports
Fixes `UnusedImport` inspection violations. Description: >Reports any import statements that are unused. Since IDEA can automatically detect and fix such statements with its "Optimize Imports" command, this inspection is mostly useful for off-line reporting on code bases that you don't intend to change.
This commit is contained in:
parent
1dcb4b201f
commit
2ed00e0af3
|
|
@ -3,7 +3,6 @@ package com.google.checkstyle.test.base;
|
|||
import java.io.BufferedReader;
|
||||
import java.io.File;
|
||||
import java.io.FileInputStream;
|
||||
import java.io.FileReader;
|
||||
import java.io.IOException;
|
||||
import java.io.InputStreamReader;
|
||||
import java.net.URL;
|
||||
|
|
|
|||
|
|
@ -3,7 +3,6 @@ package com.google.checkstyle.test.base;
|
|||
import java.io.BufferedReader;
|
||||
import java.io.File;
|
||||
import java.io.FileInputStream;
|
||||
import java.io.FileReader;
|
||||
import java.io.IOException;
|
||||
import java.io.InputStreamReader;
|
||||
import java.nio.charset.StandardCharsets;
|
||||
|
|
|
|||
Loading…
Reference in New Issue