From: Chris Jaekl Date: Sun, 27 Dec 2015 13:20:45 +0000 (+0900) Subject: Implement BugCollection.hashCode() X-Git-Url: http://jaekl.net/gitweb/?p=cfb.git;a=commitdiff_plain;h=6032315cf7e150bcda88c9d6e6b35fc244217d54 Implement BugCollection.hashCode() --- diff --git a/prod/net/jaekl/cfb/xml/BugCollection.java b/prod/net/jaekl/cfb/xml/BugCollection.java index 0ce05ec..168c8f1 100644 --- a/prod/net/jaekl/cfb/xml/BugCollection.java +++ b/prod/net/jaekl/cfb/xml/BugCollection.java @@ -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); + } }