Suppress deprecated import warning in Java

前端 未结 6 1961
不思量自难忘°
不思量自难忘° 2020-11-27 06:07

In Java, if you import a deprecated class:

import SomeDeprecatedClass;

You get this warning: The type SomeDeprecatedClass is deprecat

6条回答
  •  我在风中等你
    2020-11-27 06:43

    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.

提交回复
热议问题