EIOJLC - Explicit Import Of the java.lang Classes
Explicit import of classes from the package 'java.lang' should not be performed.
Wrong
package audit; import java.lang.*; class EIOJLC {}
Tip: Delete unnecessary import statement.