From 58655b7c7fc156d0c8ac798bca8165687687125d Mon Sep 17 00:00:00 2001 From: Janusz Baginski Date: Thu, 25 Jan 2024 16:06:54 +0000 Subject: [PATCH] Updates nullability annotations --- .../test/java/com/shazam/fork/system/io/FakeFileManager.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fork-runner/src/test/java/com/shazam/fork/system/io/FakeFileManager.java b/fork-runner/src/test/java/com/shazam/fork/system/io/FakeFileManager.java index ce876679..fe37e6ef 100644 --- a/fork-runner/src/test/java/com/shazam/fork/system/io/FakeFileManager.java +++ b/fork-runner/src/test/java/com/shazam/fork/system/io/FakeFileManager.java @@ -18,8 +18,8 @@ import com.shazam.fork.model.Device; import com.shazam.fork.model.Pool; import com.shazam.fork.model.TestCaseEvent; -import org.jetbrains.annotations.NotNull; +import javax.annotation.Nonnull; import java.io.File; public class FakeFileManager implements FileManager { @@ -73,7 +73,7 @@ public File getFile(FileType fileType, String pool, String safeSerial, TestIdent } @Override - public File getFile(@NotNull FileType fileType, @NotNull Pool pool, @NotNull Device device, @NotNull TestIdentifier testIdentifier) { + public File getFile(@Nonnull FileType fileType, @Nonnull Pool pool, @Nonnull Device device, @Nonnull TestIdentifier testIdentifier) { return null; } }