Pattern: No whitespace after token
Issue: -
Checks that a token is followed by whitespace.
To configure the check:
<module name="WhitespaceAfter"/>
To configure the check for whitespace only after COMMA and SEMI tokens:
<module name="WhitespaceAfter">
<property name="tokens" value="COMMA, SEMI"/>
</module>