Peter B. West wrote:
if (isEnabled()) {
    return true;
}

is absurd.
Not necessarily. I it *much* easier to add a
System.out.println() to this than to either

  if (isEnabled())    return true;
or
  if (isEnabled())
    return true;

If you are debugging code written by someone else,
this should be worth the trouble of the additional
line with the closing brace.


J.Pietschmann



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]

Reply via email to