I don't spend a lot of time reading other peoples' code, but when I do, and when they format their curly braces like
if(foo)
{
doSomethingWith(bar);
}
It drives me irrationally insane with rage.
if(foo){
doSomethingWith(bar);
}
Is better. I will not entertain arguments.
Tagged: