mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 03:13:40 +07:00
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:
+3
-3
@@ -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) {
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+2
-2
@@ -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) {
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user