Statement with Empty Body (SEB)

Description:

As far as possible, avoid using statements with empty bodies.

Example:

StringTokenizer st = new StringTokenizer(class1.getName(), ".", true);
String s;
for( s = ""; st.countTokens() > 2; 
    s = s + st.nextToken() );