You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2013/04/30 21:26:42 UTC

svn commit: r1477787 - /commons/proper/collections/trunk/src/test/java/org/apache/commons/collections4/FactoryUtilsTest.java

Author: sebb
Date: Tue Apr 30 19:26:42 2013
New Revision: 1477787

URL: http://svn.apache.org/r1477787
Log:
Add hashCode() to keep Findbugs happy

Modified:
    commons/proper/collections/trunk/src/test/java/org/apache/commons/collections4/FactoryUtilsTest.java

Modified: commons/proper/collections/trunk/src/test/java/org/apache/commons/collections4/FactoryUtilsTest.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/test/java/org/apache/commons/collections4/FactoryUtilsTest.java?rev=1477787&r1=1477786&r2=1477787&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/test/java/org/apache/commons/collections4/FactoryUtilsTest.java (original)
+++ commons/proper/collections/trunk/src/test/java/org/apache/commons/collections4/FactoryUtilsTest.java Tue Apr 30 19:26:42 2013
@@ -217,6 +217,10 @@ public class FactoryUtilsTest extends ju
             }
             return false;
         }
+        @Override
+        public int hashCode() { // please Findbugs
+            return super.hashCode();
+        }
     }
 
     public static class Mock2 implements Serializable {
@@ -237,6 +241,10 @@ public class FactoryUtilsTest extends ju
             }
             return false;
         }
+        @Override
+        public int hashCode() { // please Findbugs
+            return super.hashCode();
+        }
     }
 
     public static class Mock3 {