Removed obsolete checkstyle properties file.

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/math/trunk@141163 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Phil Steitz 2004-04-11 16:05:20 +00:00
parent ba660deb30
commit 10b612d0d7
1 changed files with 0 additions and 20 deletions

View File

@ -1,20 +0,0 @@
# commons math customization of default Checkstyle behavior
# Verify that EVERY source file has the appropriate license
checkstyle.header.file=LICENSE.txt
# 2-5 = CVS Header in Commons license, 10 = copyright date, 32 = product name
#checkstyle.header.ignoreline=2,3,4,5,10,32
# Ignore operator wrap, this has the effect of allowing
# operators to appear at both the eol and the nl. This
# setting should be eol, but checkstyle had problems
# parsing this property when set to "eol". "ignore"
# was selected as a fallback.
checkstyle.wrap.operator = ignore
# Ignore padding around parenthese, this allows for both
# foo(a,b), and foo( a, b ).
checkstyle.paren.pad = ignore
# One should not be instantiating a java.lang.Boolean
checkstyle.illegal.instantiations = java.lang.Boolean