Pattern: Wildcard import
Issue: -
Wildcard imports, static or otherwise, should not be used.
Example of violations:
import some.something.*
import static foo.bar.*
public class SomeClass{}
Pattern: Wildcard import
Issue: -
Wildcard imports, static or otherwise, should not be used.
Example of violations:
import some.something.*
import static foo.bar.*
public class SomeClass{}