Compiler Warning J5005

Package 'identifier' was already implicitly imported

The compiler detected an import statement for a package that was already implicitly imported, such as java.lang. This message occurs at warning level 1 or greater.

The following example illustrates this warning:

import java.lang.*;
//warning: process is already imported in the first import statement
import java.lang.Process;

public class Simple{
   //Do something meaningful here
}