Skip to content

Commit 054c813

Browse files
committed
trying fix build
1 parent 793ae80 commit 054c813

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

006-Xunit/src/main/java/task/Tester/Tester.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package task.Tester;
22

33
import com.google.common.collect.ImmutableList;
4-
import com.sun.istack.internal.NotNull;
4+
import org.jetbrains.annotations.NotNull;
55
import task.annotations.*;
66

77
import java.lang.annotation.Annotation;

006-Xunit/src/main/java/task/annotations/Checks.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
package task.annotations;
22

3+
import org.jetbrains.annotations.NotNull;
4+
35
public class Checks {
4-
final static String nullString = "";
6+
final static @NotNull String nullString = "";
57
final class MyThrowable extends Throwable {}
68

79
public static boolean hasException(Test test) {

0 commit comments

Comments
 (0)