Suppress deprecated import warning in Java

前端 未结 6 1951
不思量自难忘°
不思量自难忘° 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:32

    I solved this by changing the import to:

    import package.*
    

    then annotating the method that used the deprecated classes with@SuppressWarnings("deprecation")

提交回复
热议问题