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