blob: 4f873ab6decfe506915b7f2b6f927e99f8d4269d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
class NonNullOnParameter extends Thread {
<clinit>() {
}
NonNullOnParameter(@lombok.NonNull String arg) {
this(arg, "");
if ((arg == null))
{
throw new java.lang.NullPointerException("arg is marked non-null but is null");
}
}
NonNullOnParameter(@lombok.NonNull String arg, @lombok.NonNull String arg2) {
super(arg);
if ((arg2 == null))
{
throw new java.lang.NullPointerException("arg2 is marked non-null but is null");
}
if ((arg == null))
throw new NullPointerException();
}
public void test2(@lombok.NonNull String arg, @lombok.NonNull String arg2, @lombok.NonNull String arg3) {
if ((arg == null))
{
throw new java.lang.NullPointerException("arg is marked non-null but is null");
}
if ((arg3 == null))
{
throw new java.lang.NullPointerException("arg3 is marked non-null but is null");
}
if ((arg2 == null))
{
throw new NullPointerException("arg2");
}
if ((arg == null))
System.out.println("Hello");
}
public void test3(@lombok.NonNull String arg) {
if ((arg == null))
{
throw new java.lang.NullPointerException("arg is marked non-null but is null");
}
if ((arg != null))
throw new IllegalStateException();
}
public void test(@lombok.NonNull String stringArg, @lombok.NonNull String arg2, @lombok.NonNull int primitiveArg) {
if ((stringArg == null))
{
throw new java.lang.NullPointerException("stringArg is marked non-null but is null");
}
if ((arg2 == null))
{
throw new java.lang.NullPointerException("arg2 is marked non-null but is null");
}
}
public void test(@lombok.NonNull String arg) {
if ((arg == null))
{
throw new java.lang.NullPointerException("arg is marked non-null but is null");
}
System.out.println("Hey");
if ((arg == null))
throw new NullPointerException();
}
public void testWithAssert(@lombok.NonNull String param) {
assert (param != null);
}
public void testWithAssertAndMessage(@lombok.NonNull String param) {
assert (param != null): "Oops";
}
}
|