In Java, if you import a deprecated class:
import SomeDeprecatedClass;
You get this warning: The type SomeDeprecatedClass is deprecat
The type SomeDeprecatedClass is deprecat
To avoid the warning: do not import the class
instead use the fully qualified class name
and use it in as few locations as possible.