Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/safeVarargs/after7.java
Yaroslav Lepenkin ecf06ab80c 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
2015-07-07 17:24:06 +03:00

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) {
}
}