diff options
author | William Victor Mote <vmote@apache.org> | 2003-07-14 17:46:59 +0000 |
---|---|---|
committer | William Victor Mote <vmote@apache.org> | 2003-07-14 17:46:59 +0000 |
commit | 26d1267edb58ba004498e776896a342dffda556e (patch) | |
tree | ac4ccf9c552439c9bc97fad9ea7daf4b7ecd2d8d /checkstyle.cfg | |
parent | 7ee481bf335b21b02f3184ea4f343adaefb99666 (diff) | |
download | xmlgraphics-fop-26d1267edb58ba004498e776896a342dffda556e.tar.gz xmlgraphics-fop-26d1267edb58ba004498e776896a342dffda556e.zip |
Change checkstyle.pattern.publicmember property, in accordance with the discussion found at: http://marc.theaimsgroup.com/?t=105805503200001&r=1&w=2
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196708 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'checkstyle.cfg')
-rw-r--r-- | checkstyle.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/checkstyle.cfg b/checkstyle.cfg index fccf8471c..9edb4b5be 100644 --- a/checkstyle.cfg +++ b/checkstyle.cfg @@ -16,7 +16,7 @@ checkstyle.javadoc.checkUnusedThrows = false # non-static members checkstyle.pattern.member = ^[a-z][a-zA-Z0-9]*$ # non-static, public members -checkstyle.pattern.publicmember = ^f[A-Z][a-zA-Z0-9]*$ +checkstyle.pattern.publicmember = ^[a-z][a-zA-Z0-9]*$ # constants (static & final) checkstyle.pattern.const = ^[A-Z](_?[A-Z0-9]+)*$ # other static |