Skip to content

Commit

Permalink
Fix changed TreeID Check (all but -1 is valid) (#303)
Browse files Browse the repository at this point in the history
  • Loading branch information
mbechler committed May 23, 2022
1 parent 6452365 commit 09bda86
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ public final int getTid () {

@Override
public boolean isValidTid () {
return getTreeId() >= 0;
return getTreeId() != -1;
}


Expand Down

0 comments on commit 09bda86

Please sign in to comment.