@SafeVarargs inspection: find all methods which can be annotated as

This commit is contained in:
anna
2011-02-14 20:12:01 +01:00
parent bc30469828
commit 04d3758e69
24 changed files with 412 additions and 2 deletions

View File

@@ -0,0 +1,8 @@
// "Annotate as @SafeVarargs" "false"
import java.util.List;
public class Test {
public static void m<caret>ain(List<?>... args) {
}
}