mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 08:50:57 +07:00
15 lines
307 B
Java
15 lines
307 B
Java
class CommentAfterSelectedFragment {
|
|
foo(boolean debugMode) {
|
|
int i= 0;
|
|
|
|
i = newMethod(debugMode, i);
|
|
System.out.println(i);
|
|
}
|
|
|
|
private int newMethod(boolean debugMode, int i) {
|
|
if (debugMode) {
|
|
i = 1;
|
|
} /* comment */
|
|
return i;
|
|
}
|
|
} |