Revert "Simplify, less clutter."

This reverts commit 18f5f54ca0.
This commit is contained in:
ggregory 2016-01-16 14:36:50 -08:00
parent 18f5f54ca0
commit bb76a6848b
1 changed files with 1108 additions and 1104 deletions

View File

@ -1098,7 +1098,11 @@ public static int compare(boolean x, boolean y) {
if (x == y) {
return 0;
}
return x ? 1 : -1;
if (x) {
return 1;
} else {
return -1;
}
}
}