IDEA-40780 When code is compiled with -g, use the argument name for the @NotNull error.

This commit is contained in:
peter
2013-10-17 21:54:34 +02:00
parent 99e97f3207
commit 293e4c55a7
6 changed files with 99 additions and 19 deletions
@@ -0,0 +1,7 @@
import org.jetbrains.annotations.NotNull;
public class UseParameterNames {
public UseParameterNames(Object obj, @NotNull Object obj2) { }
public void instanceMethod(@NotNull Object x) {}
public static void staticMethod(@NotNull Object y) {}
}