[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
@@ -1,6 +1,6 @@
import org.jspecify.annotations.*;
import org.jspecify.nullness.*;
@DefaultNonNull
@NullMarked
public class Simple {
@Nullable public Derived field = null;
@@ -19,7 +19,7 @@ class Derived extends Base {
void foo() {}
}
@DefaultNonNull
@NullMarked
class Use {
static public void main(Simple a, Derived x) {
a.foo(x, null).foo();