Skip to content

Commit

Permalink
Fix previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmonkey4eva committed Jun 29, 2015
1 parent a4bfe78 commit f4e68b1
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -134,11 +134,11 @@ public static boolean xthArgEquals(int argc, String args, String input) {
arg++;
}
else if (arg == argc) {
if (data2[x++] != data[i]) {
if (x == data2.length) {
return false;
}
if (x + 1 == data2.length) {
return x == data2.length;
if (data2[x++] != data[i]) {
return false;
}
}
}
Expand Down

0 comments on commit f4e68b1

Please sign in to comment.