After a right brace, a comment on the next line is
moved up to the right
brace line.
E.g.
if (tok == null)
{
tok =
seq.appendTokenColumn(settings.align_terms,
AlignableColumnNodeType.TERM);
}
/** if the simpleTerm is multiline, we need to
parse it down so that
the first "token" is assigned to
* the token column, and the rest are simply
added as unaligned
tokens. The multiline processor works
* on single lines also, so just use it for
everything here.
*/
becomes
if (tok == null)
{
tok =
seq.appendTokenColumn(settings.align_terms,
AlignableColumnNodeType.TERM);
} /** if the simpleTerm is multiline, we need
to parse it down so
that the first "token" is assigned to
* the token column, and the rest are simply
added as unaligned
tokens. The multiline processor works
* on single lines also, so just use it for
everything here.
*/