File indent options provider API: a flag to skip a provider on full reformat, logging

This commit is contained in:
Rustam Vishnyakov
2014-09-24 11:45:44 +04:00
parent 0c0b29bf42
commit ec603b4814
14 changed files with 156 additions and 21 deletions
@@ -0,0 +1,8 @@
class A {
private void foo(boolean b) {
int x;
if (b) {
System.out.println(x);
}
}
}