[jspecify] Change annotations' package from org.jspecify.annotations to org.jspecify.nullness, and DefaultNonNull to NullMarked

^KT-45409 Fixed
This commit is contained in:
Victor Petukhov
2021-03-10 22:02:08 +03:00
parent 2ae7740c46
commit b45d5abeb1
36 changed files with 139 additions and 139 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
@org.jspecify.annotations.DefaultNonNull
@org.jspecify.nullness.NullMarked
public class A {
public void foo(String x) {}
@org.jspecify.annotations.Nullable
@org.jspecify.nullness.Nullable
public String bar() { return null; }
}