Minor: update testData with nullability annotations
This commit is contained in:
@@ -25,23 +25,14 @@ public final class Foo {
|
||||
private final long l = 0L;
|
||||
private final float f = 0.0F;
|
||||
private final double d = 0.0;
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
private final java.lang.String s = null;
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
private final int[] iarr = null;
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
private final long[] larr = null;
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
private final double[] darr = null;
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
private final java.lang.String[] sarr = null;
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
private final java.lang.Class<?> cl = null;
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
private final java.lang.Class<?>[] clarr = null;
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
private final Em em = null;
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
private final Em[] emarr = null;
|
||||
|
||||
public final void foo(int a) {
|
||||
|
||||
Reference in New Issue
Block a user