DPMSSL - Don't Place Multiple Statements on the Same Line

According to Sun Code Conventions for Java, each line should contain at most one statement.

Wrong

if( someCondition ) someMethod();
i++; j++;

Tip: Place each statement on the separate line.

Right

if( someCondition )
    someMethod();
i++;
j++;