Alignment on "public, static, void, <T>, throws" replaced with none indent.

Previously alignment were created for mostly every element of method/class declaration
|public |void |run() {
}

Therefore, when posprocess reformat is used in reformat context mode on "run" rename will be reformatted whole method declaration starting with public, which sometimes can be not usefull
This commit is contained in:
Yaroslav Lepenkin
2015-07-07 17:24:06 +03:00
parent 2df44a4293
commit ecf06ab80c
6 changed files with 34 additions and 12 deletions
@@ -1,9 +1,9 @@
// "Annotate as @SafeVarargs" "true"
import java.util.List;
public class Test {
public <T> @SafeVarargs
static void main(List<T>... args) {
public <T> @SafeVarargs
static void main(List<T>... args) {
}
}
}
@@ -1,8 +1,8 @@
// "Annotate as @SafeVarargs" "true"
import java.util.List;
public class Test {
public <T> static void m<caret>ain(List<T>... args) {
public <T> static void m<caret>ain(List<T>... args) {
}
}
}