You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gr...@apache.org on 2013/03/08 09:31:23 UTC

svn commit: r1454280 - /commons/proper/ognl/trunk/findbugs-exclude-filter.xml

Author: grobmeier
Date: Fri Mar  8 08:31:22 2013
New Revision: 1454280

URL: http://svn.apache.org/r1454280
Log:
filtered trivial method naming issue for generated classes

Modified:
    commons/proper/ognl/trunk/findbugs-exclude-filter.xml

Modified: commons/proper/ognl/trunk/findbugs-exclude-filter.xml
URL: http://svn.apache.org/viewvc/commons/proper/ognl/trunk/findbugs-exclude-filter.xml?rev=1454280&r1=1454279&r2=1454280&view=diff
==============================================================================
--- commons/proper/ognl/trunk/findbugs-exclude-filter.xml (original)
+++ commons/proper/ognl/trunk/findbugs-exclude-filter.xml Fri Mar  8 08:31:22 2013
@@ -27,5 +27,13 @@
   <Match>
     <Bug pattern="DM_NUMBER_CTOR" />
   </Match>
+  <Match>
+    <Class name="org.apache.commons.ognl.OgnlParser" />
+    <Bug pattern="NM_METHOD_NAMING_CONVENTION" />
+  </Match>
+  <Match>
+    <Class name="org.apache.commons.ognl.OgnlParserTokenManager" />
+    <Bug pattern="NM_METHOD_NAMING_CONVENTION" />
+  </Match>
 
 </FindBugsFilter>