mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 20:01:20 +07:00
GitOrigin-RevId: 781e5a88a348d9af4579869cb39ff042f871b78f
10 lines
128 B
Java
10 lines
128 B
Java
// "Suppress for statement" "true"
|
|
class a implements Runnable {
|
|
/**
|
|
* @deprecated
|
|
*/
|
|
int b;
|
|
public void run(){
|
|
<caret>b++;
|
|
}
|
|
} |