Jtest logo




Contents  Previous  Next  Index

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'


Contents  Previous  Next  Index

ParaSoft logo
(888) 305-0041 info@parasoft.com Copyright © 1996-2001 ParaSoft