mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 09:39:37 +07:00
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
10 lines
158 B
Java
10 lines
158 B
Java
// "Annotate as @SafeVarargs" "true"
|
|
import java.util.List;
|
|
public class Test {
|
|
public <T> @SafeVarargs
|
|
static void main(List<T>... args) {
|
|
|
|
}
|
|
}
|
|
|