Skip to content

Commit

Permalink
Fix nasty 'negative logic' error with IF.
Browse files Browse the repository at this point in the history
  • Loading branch information
aufdemrand committed Jul 3, 2013
1 parent bb7cffc commit e1aea04
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,17 +95,14 @@ public boolean determineOutcome() {

if (comparable instanceof String) {
compare_as_strings();
return outcome;
}

else if (comparable instanceof dList) {
compare_as_list();
return outcome;
}

else if (comparable instanceof Double) {
compare_as_numbers();
return outcome;
}

else if (comparable instanceof Boolean) {
Expand Down

0 comments on commit e1aea04

Please sign in to comment.