Nov. 19, 2014, 11:12 a.m.
IT | Rants

Why why repeat repeat yourself yourself??

It is retarded. Why do people insist on writing:

boolean overwrite = check();
if (overwrite == true) {
  doSomething();
}

when this does the same, requires less typing and is more natural to read:

boolean overwrite = check();
if (overwrite) {
  doSomething();
}

Oi!