Skip to content

Commit

Permalink
removed special handling of zero lengths
Browse files Browse the repository at this point in the history
  • Loading branch information
oertl committed Jul 31, 2024
1 parent a235a8a commit 0ca18cb
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -604,10 +604,6 @@ public HashStream64 putLong(long v) {

@Override
public HashStream64 putBytes(byte[] b, int off, int len) {
if (len == 0) {
return this;
}

byteCount += len;

int x = 49 - offset;
Expand Down

0 comments on commit 0ca18cb

Please sign in to comment.