Skip to content

Commit

Permalink
Fix if ( x || y ) && ( z || w ) ...
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmonkey4eva committed Feb 22, 2015
1 parent 0c04344 commit e4360e2
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -197,7 +197,7 @@ else if (xarg.equalsIgnoreCase(")")) {
count--;
if (count == -1) {
boolean cfound = new ArgComparer().compare(subargs, scriptEntry);
for (int c = 0; c < (x - i) + 1;) {
for (int c = 0; c < (x - i) + 1; c++) {
args.remove(i);
}
args.add(i, cfound ? "true": "false");
Expand Down

0 comments on commit e4360e2

Please sign in to comment.