Jspecify: Rename codeanalysis annotations to jspecify ones

This commit is contained in:
Victor Petukhov
2020-10-08 11:41:30 +03:00
parent 59bd7364ab
commit 2685c7efce
36 changed files with 107 additions and 313 deletions
+7
View File
@@ -0,0 +1,7 @@
@org.jspecify.annotations.DefaultNotNull
public class A {
public void foo(String x) {}
@org.jspecify.annotations.Nullable
public String bar() { return null; }
}