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:
Michal Kordas 2015-08-29 23:32:05 +02:00 committed by Roman Ivanov
parent 1dcb4b201f
commit 2ed00e0af3
2 changed files with 0 additions and 2 deletions

View File

@ -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;

View File

@ -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;