match on empty line with trailing space - thanks Braids

This commit is contained in:
jendave
2011-08-20 22:31:23 +00:00
parent a724e2a16b
commit d7ceba4f19

View File

@@ -62,7 +62,7 @@
<!-- Miscellaneous other checks. --> <!-- Miscellaneous other checks. -->
<!-- See http://checkstyle.sf.net/config_misc.html --> <!-- See http://checkstyle.sf.net/config_misc.html -->
<module name="RegexpSingleline"> <module name="RegexpSingleline">
<property name="format" value="[^\*]\s+$"/> <property name="format" value="(^|[^\*])\s+$"/>
<property name="minimum" value="0"/> <property name="minimum" value="0"/>
<property name="maximum" value="0"/> <property name="maximum" value="0"/>
<property name="message" value="Line has trailing spaces."/> <property name="message" value="Line has trailing spaces."/>