Skip to content

Commit

Permalink
Remove unused
Browse files Browse the repository at this point in the history
  • Loading branch information
RetGal committed Dec 27, 2024
1 parent 305fb64 commit 081ae6d
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions src/main/java/mpo/dayon/common/buffer/MemByteBuffer.java
Original file line number Diff line number Diff line change
Expand Up @@ -57,15 +57,6 @@ public void write(int val) {
buffer[count++] = (byte) val;
}

/**
* @see #write(int)
*/
private void write(int val1, int val2) {
ensureCapacity(count + 2);
buffer[count++] = (byte) val1;
buffer[count++] = (byte) val2;
}

@Override
public void write(byte[] buffer) {
write(buffer, 0, buffer.length);
Expand Down

0 comments on commit 081ae6d

Please sign in to comment.