mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-08 21:52:48 +07:00
GitOrigin-RevId: 781e5a88a348d9af4579869cb39ff042f871b78f
14 lines
180 B
Java
14 lines
180 B
Java
// "Suppress for statement" "true"
|
|
class a implements Runnable {
|
|
/**
|
|
* @deprecated
|
|
*/
|
|
public void aa(){
|
|
}
|
|
|
|
public void run(){
|
|
//noinspection deprecation
|
|
<caret>aa();
|
|
}
|
|
}
|