UC.DIL
Don't explicitly "import" the java.lang.* "package"
Description
This rule flags any case where the java.lang.* "package" is imported.
It is not necessary to import this package because it is imported implicitly.
Example
package UC;
import java.lang.*; // Violation
public class DIL {
}
Repair
Remove the import statement for `import java.lang'
|