Suppress deprecated import warning in Java

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.

Leave a Comment