Skip to content

Commit

Permalink
chore: revert hasNext
Browse files Browse the repository at this point in the history
  • Loading branch information
ablax committed Aug 28, 2024
1 parent 361d116 commit 9203a78
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public ScaleCodecReader(byte[] source) {
* @return true if has more elements
*/
public boolean hasNext() {
return true;//pos < source.length;
return pos < source.length;
}

/**
Expand Down

0 comments on commit 9203a78

Please sign in to comment.