Bulletproofed Boolean - The Daily WTF
public boolean isBooleanFalse(boolean value) {
boolean response = false;
if (value == true) {
response = false;
}
else {
response = true;
}
return response;
}
via thedailywtf.com
Even my CMU Intro to Programming profs did not make me do that!