mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
26 lines
495 B
Java
26 lines
495 B
Java
public class FF {
|
|
@Nullable
|
|
public Object bar () { //<--- MOVE THIS UP
|
|
int
|
|
c;
|
|
|
|
@Nullable
|
|
int
|
|
g;
|
|
return null;
|
|
Runnable runnable = new Runnable() {
|
|
public void run() {
|
|
//To change body of implemented methods use File | Settings | File Templates.
|
|
}
|
|
};
|
|
}
|
|
|
|
@Nullable
|
|
public
|
|
Object
|
|
foo () { //xxxx<--- MOVE THIS UP
|
|
return null;
|
|
}
|
|
|
|
}
|