mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 04:03:20 +07:00
Also was extracted base class for indent detection tests and created java specific one.
24 lines
407 B
Java
24 lines
407 B
Java
import java.lang.System;
|
|
|
|
public class MyOwn {
|
|
|
|
public void run() {
|
|
int a = 2;
|
|
// my super comment
|
|
|
|
int c = 3;
|
|
Runnable a = null;
|
|
System.out.println("Hello!");
|
|
c += 3;
|
|
int re = 12;
|
|
re += 1;
|
|
c = re + c;
|
|
int q;
|
|
q = c * re + c;
|
|
c = q * 11 - 167;
|
|
System.out.println("Testing!");
|
|
System.out.println("Hello!");
|
|
c += 3;
|
|
}
|
|
|
|
} |