Skip to content

Commit

Permalink
GH-79 little code clean up.
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick Corless committed Nov 23, 2022
1 parent 406fd56 commit 9a365c5
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -500,10 +500,6 @@ private Object startOperand() {
}
if (pos <= numRead && pos > startTokenPos) {
int[] tmp = Operands.parseOperand(streamBytes, startTokenPos, pos - startTokenPos);
// check for 'null' token which maybe picked up as an operator.
if (tmp == null) {
return null;
}
// adjust for any potential parsing compensation.
if (tmp[1] > 0) {
pos -= tmp[1];
Expand Down

0 comments on commit 9a365c5

Please sign in to comment.