Skip to content

Commit

Permalink
pmd :: UnnecessarySemicolon (#1053)
Browse files Browse the repository at this point in the history
  • Loading branch information
sambish5 authored Jan 31, 2025
1 parent af7cdd3 commit 67cdcce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/emissary/core/IBaseDataObject.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ enum MergePolicy {
* @deprecated As of emissary 8.18.0, this method performs no operations
*/
@Deprecated(forRemoval = true)
default void checkForUnsafeDataChanges() {};
default void checkForUnsafeDataChanges() {}

/**
* Return the data as a byte array. If using a channel to the data, calling this method will only return up to
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import static org.junit.jupiter.api.Assertions.assertEquals;

public class ChannelTestHelper {
private ChannelTestHelper() {};
private ChannelTestHelper() {}

public static void checkByteArrayAgainstSbc(final byte[] bytesToVerify, final SeekableByteChannelFactory sbcf)
throws IOException {
Expand Down

0 comments on commit 67cdcce

Please sign in to comment.