Files
Dmitry Jemerov 10ca2b4e5f test++
2009-09-10 21:57:00 +04:00

10 lines
160 B
Java

public class Foo {
Foo getAnotherFoo() {}
void <caret>tryMakeMeStatic(boolean b) {
if (b) {
getAnotherFoo().tryMakeMeStatic(!b);
}
}
}