File indent options provider API

This commit is contained in:
Rustam Vishnyakov
2014-09-18 18:03:34 +04:00
parent 74d683de3e
commit 3fb1e5d778
29 changed files with 366 additions and 71 deletions

View File

@@ -0,0 +1,8 @@
class A {
private void foo(boolean b) {
int x;
if (b) {
System.out.println(x);
}
}
}