Synopsis: | No need to import a type that lives in the same package |
Language: | Java |
Severity Level: | 3 |
Category: | ImportStatement |
Description: |
No need to import a type that lives in the same package.package foo; import foo.Buz; // no need for this import foo.*; // or this public class Bar{} |