Added check for System.out.println stmts in code.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@811691 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Phil Steitz 2009-09-05 18:11:50 +00:00
parent 0202b17e47
commit 208aff49c1
1 changed files with 7 additions and 0 deletions

View File

@ -97,6 +97,13 @@
<property name="illegalPattern" value="true"/>
<property name="message" value="Trailing whitespace"/>
</module>
<!-- No System.out.println() statements -->
<module name="Regexp">
<!-- no sysouts -->
<property name="format" value="System\.out\.println"/>
<property name="illegalPattern" value="true"/>
</module>
<!--
<module name="DeclarationOrder" />