Suppress deprecated import warning in Java

前端 未结 6 1962
不思量自难忘°
不思量自难忘° 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条回答
  •  猫巷女王i
    2020-11-27 06:44

    As a hack you can not do the import and use the fully qualified name inside the code.

    You might also try javac -Xlint:-deprecation not sure if that would address it.

提交回复
热议问题