Skip to content

Commit

Permalink
revert 97b652c - needs further review
Browse files Browse the repository at this point in the history
relates to #76
  • Loading branch information
ar committed Jun 20, 2018
1 parent b247ae2 commit bcac838
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/minigl/src/main/java/org/jpos/gl/GLSession.java
Original file line number Diff line number Diff line change
Expand Up @@ -1069,7 +1069,7 @@ else if (acct.isFinalAccount()) {
}
} else {
BalanceCache bcache = getBalanceCache (journal, acct, layersCopy);
if (bcache != null && (maxId == 0 || bcache.getRef() <= maxId)) {
if (bcache != null && bcache.getRef() <= maxId) {
balance[0] = bcache.getBalance();
entryCrit.add (Restrictions.gt("id", bcache.getRef()));
}
Expand Down

0 comments on commit bcac838

Please sign in to comment.