This is an automated email from the ASF dual-hosted git repository.

henrib pushed a commit to tag 2.1
in repository https://gitbox.apache.org/repos/asf/commons-jexl.git

commit 61d0cb4141500275cc007c6dc449f83ef68f1df6
Author: Sebastian Bazley <s...@apache.org>
AuthorDate: Thu Dec 8 14:03:13 2011 +0000

    Update Findbugs ignore list
    
    git-svn-id: 
https://svn-us.apache.org/repos/asf/commons/proper/jexl/branches/2.0@1211891 
13f79535-47bb-0310-9956-ffa450edef68
---
 src/main/config/findbugs-exclude-filter.xml | 17 +++++++++++++----
 1 file changed, 13 insertions(+), 4 deletions(-)

diff --git a/src/main/config/findbugs-exclude-filter.xml 
b/src/main/config/findbugs-exclude-filter.xml
index ca14658..5e434c8 100644
--- a/src/main/config/findbugs-exclude-filter.xml
+++ b/src/main/config/findbugs-exclude-filter.xml
@@ -16,11 +16,8 @@
    limitations under the License.
 -->
 
-<!--
-  This file removes JavaCC generated classes from being analyzed by findbugs.
-  Having no way to influence their generation, instructing findbugs to ignore 
them reduces clutter.
--->
 <FindBugsFilter>
+    <!-- Ignore JavaCC generated classes -->
     <Match>
         <Class name="org.apache.commons.jexl2.parser.ParseException"/>
     </Match>
@@ -39,4 +36,16 @@
     <Match>
         <Class name="org.apache.commons.jexl2.parser.TokenMgrError"/>
     </Match>
+    <!-- Ignore deliberately unused field -->
+    <Match>
+        <Class name="org.apache.commons.jexl2.Interpreter"/>
+        <Field name="parameters"/>
+    </Match>
+    <!-- Deprecated and unused, included for binary compat only -->
+    <Match>
+        <Class name="org.apache.commons.jexl2.parser.ASTFloatLiteral"/>
+    </Match>
+    <Match>
+        <Class name="org.apache.commons.jexl2.parser.ASTIntegerLiteral"/>
+    </Match>
 </FindBugsFilter>

Reply via email to