Skip to content

Commit

Permalink
wip: use test nonnull annotations
Browse files Browse the repository at this point in the history
Signed-off-by: Matt Peterson <[email protected]>
  • Loading branch information
mattp-swirldslabs committed Aug 8, 2024
1 parent 48a3df1 commit 5a21f6d
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@

import com.hedera.block.server.util.PersistTestUtils;
import com.hedera.block.server.util.TestUtils;
import edu.umd.cs.findbugs.annotations.NonNull;
import io.helidon.config.Config;
import io.helidon.config.MapConfigSource;
import io.helidon.config.spi.ConfigSource;
Expand Down Expand Up @@ -274,7 +275,7 @@ public TestBlockAsDirWriter(
}

@Override
public void write(final Path blockItemFilePath, final BlockItem blockItem)
public void write(@NonNull final Path blockItemFilePath, @NonNull final BlockItem blockItem)
throws IOException {
super.write(blockItemFilePath, blockItem);
}
Expand Down

0 comments on commit 5a21f6d

Please sign in to comment.