mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-28 15:20:54 +07:00
13 lines
280 B
Java
13 lines
280 B
Java
class Foo {
|
|
void test(int a, int b) {
|
|
<caret> if (a > 0) {
|
|
if (b > 0) {
|
|
System.out.println("A");
|
|
System.out.println("B");
|
|
System.out.println("C");
|
|
System.out.println("Deeper");
|
|
System.out.println("Wrong indent");
|
|
}
|
|
}
|
|
}
|
|
} |