DIPSFBT - Don't Import the Package the Source File Belongs To

No classes or interfaces need to be imported from the package that the source code file belongs to. Everything in that package is available without explicit import statements.

Wrong

package audit;
import java.awt.*;
import audit.*;

public class DIPSFBT {
}

Tip: Delete unnecessary import statement.