Implement BugCollection.hashCode()
authorChris Jaekl <cejaekl@yahoo.com>
Sun, 27 Dec 2015 13:20:45 +0000 (22:20 +0900)
committerChris Jaekl <cejaekl@yahoo.com>
Sun, 27 Dec 2015 13:20:45 +0000 (22:20 +0900)
prod/net/jaekl/cfb/xml/BugCollection.java

index 0ce05ecaa888a18455c07db4e401e47fd4de4e13..168c8f1c5787935a5c6badab052d291c2d1e74b0 100644 (file)
@@ -65,4 +65,9 @@ public class BugCollection extends ParseResult {
                
                return Util.listsAreEqual(this.m_bugs, other.m_bugs);
        }
+       
+       @Override
+       public int hashCode() {
+               return Util.objHashCode(m_bugs);
+       }
 }