fix counting parameters when doing @NotNull instrumentation (IDEA-134703)

This commit is contained in:
peter
2015-01-02 15:32:49 +01:00
parent 12b7a03e2f
commit ad56e84d88
3 changed files with 25 additions and 4 deletions
@@ -0,0 +1,9 @@
import org.jetbrains.annotations.NotNull;
public class LongParameter {
public static void foo(long a, @NotNull String b, @NotNull String c) {
}
}