usingpkg

USING package, replace by USING type (without wildcards)

Rule "usingpkg" warns when it finds a USING statement with package globs. In other words:

USING package.ClassName

is recommended instead of:

USING package.*

The use of fully qualified class names, rather than package globs, seems to be a commonly preferred practice in other languages with similar language features.