Consider the case of an if-statement with a single statement in the "true" branch only. For example:

if( someCondition ) return;

Should it be formatted on one line, as above, or on two lines:

if( someCondition )
    return;

or on four lines:

if( someCondition )
{
    return;
}

I dislike the single line format because it makes placing breakpoints hard.

Patricia

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org

Reply via email to