Testdata fixed after dfa_refactoring

This commit is contained in:
Tagir Valeev
2018-08-08 17:48:41 +07:00
parent 22cbe8cb0b
commit 8446c4bce4

View File

@@ -34,7 +34,7 @@ public class Example {
System.out.println("null");
}
@NotNull Class x = <warning descr="Expression 'ClassUtils.primitiveToWrapper(null)' might evaluate to null but is assigned to a variable that is annotated with @NotNull">ClassUtils.primitiveToWrapper(null)</warning>;
@NotNull Class x = <warning descr="'null' is assigned to a variable that is annotated with @NotNull">ClassUtils.primitiveToWrapper(null)</warning>;
}
void writeBytes(@Nullable byte[] bytes) throws IOException {