Refine diagnostics for nullability migration warnings

#KT-24911 Fixed
This commit is contained in:
Denis Zharkov
2018-07-13 17:51:11 +03:00
parent f85030b1e6
commit 89d99e3989
34 changed files with 140 additions and 113 deletions
+6 -1
View File
@@ -5,4 +5,9 @@ public class Annotated {
public void bar(@MyMigrationNonnull String x) {
}
}
@MyNullable
public String nullable() {
return null;
}
}