Name: Anonymous 2010-09-03 12:45
when reading code not written by yourself. For example, I cannot stand it when people use
instead of the much more readable
if (condition)
...
else if (condition)
...
else if (condition)
...
else if (condition)
...
elseinstead of the much more readable
if (condition)
...
else
if (condition)
...
else
if (condition)
...
else
if (condition)
...
else