Skip to content

Commit

Permalink
Fix ECJ warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
fniephaus committed Feb 9, 2024
1 parent fac45ec commit 79e1ded
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
final class ByteStorage extends NativeObjectStorage {
private final byte[] storage;

public ByteStorage(final byte[] storage) {
ByteStorage(final byte[] storage) {
this.storage = storage;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
final class IntStorage extends NativeObjectStorage {
private final int[] storage;

public IntStorage(final int[] storage) {
IntStorage(final int[] storage) {
this.storage = storage;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
final class LongStorage extends NativeObjectStorage {
private final long[] storage;

public LongStorage(final long[] storage) {
LongStorage(final long[] storage) {
this.storage = storage;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
final class ShortStorage extends NativeObjectStorage {
private final short[] storage;

public ShortStorage(final short[] storage) {
ShortStorage(final short[] storage) {
this.storage = storage;
}

Expand Down

0 comments on commit 79e1ded

Please sign in to comment.