dfa: highlight just method reference name on possible NPE warnings (IDEA-149904)

This commit is contained in:
peter
2016-01-20 16:47:53 +01:00
parent 3f53a3541e
commit b3c40ee773
41 changed files with 69 additions and 66 deletions
@@ -8,7 +8,7 @@ class Doo {
void foo(@Nullable String s) {
if (isMaybeNotNull(s)) {
System.out.println(<warning descr="Method invocation 's.length()' may produce 'java.lang.NullPointerException'">s.length()</warning>);
System.out.println(s.<warning descr="Method invocation 'length' may produce 'java.lang.NullPointerException'">length</warning>());
}
}