You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zookeeper.apache.org by ph...@apache.org on 2014/07/21 20:01:26 UTC

svn commit: r1612362 - in /zookeeper/trunk: CHANGES.txt src/java/test/config/findbugsExcludeFile.xml

Author: phunt
Date: Mon Jul 21 18:01:25 2014
New Revision: 1612362

URL: http://svn.apache.org/r1612362
Log:
ZOOKEEPER-1975. Turn off "internationalization warnings" in findbugs exclude file (phunt)

Modified:
    zookeeper/trunk/CHANGES.txt
    zookeeper/trunk/src/java/test/config/findbugsExcludeFile.xml

Modified: zookeeper/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/zookeeper/trunk/CHANGES.txt?rev=1612362&r1=1612361&r2=1612362&view=diff
==============================================================================
--- zookeeper/trunk/CHANGES.txt (original)
+++ zookeeper/trunk/CHANGES.txt Mon Jul 21 18:01:25 2014
@@ -717,6 +717,9 @@ BUGFIXES:
   ZOOKEEPER-1973. Jetty Server changes broke ibm6 support
   (Bill Havanki via phunt)
 
+  ZOOKEEPER-1975. Turn off "internationalization warnings" in findbugs
+  exclude file (phunt)
+
 IMPROVEMENTS:
 
   ZOOKEEPER-1170. Fix compiler (eclipse) warnings: unused imports,

Modified: zookeeper/trunk/src/java/test/config/findbugsExcludeFile.xml
URL: http://svn.apache.org/viewvc/zookeeper/trunk/src/java/test/config/findbugsExcludeFile.xml?rev=1612362&r1=1612361&r2=1612362&view=diff
==============================================================================
--- zookeeper/trunk/src/java/test/config/findbugsExcludeFile.xml (original)
+++ zookeeper/trunk/src/java/test/config/findbugsExcludeFile.xml Mon Jul 21 18:01:25 2014
@@ -139,4 +139,9 @@
     <Method name="wakeup" />
   </Match>
 
+  <!-- Disable encoding warnings -->
+  <Match>
+    <Bug pattern="DM_DEFAULT_ENCODING" />
+  </Match>
+
 </FindBugsFilter>