Is there a way to not let code blocks become one line? Example:
                /*
                 * for (String word : tokens) { if (!StringUtil.hasUppercaseOrNonletter(word)) { filtered.add(word); } }
                 */
I don't want to reduce the length of my comment line. For other general comments, I still want to keep the line length.
 
    