Skip to content
This repository has been archived by the owner on Jun 28, 2024. It is now read-only.

Commit

Permalink
Updates nullability annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
Janusz Baginski committed Jan 25, 2024
1 parent 4e96db2 commit 58655b7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -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;
}
}

0 comments on commit 58655b7

Please sign in to comment.