From 6032315cf7e150bcda88c9d6e6b35fc244217d54 Mon Sep 17 00:00:00 2001 From: Chris Jaekl Date: Sun, 27 Dec 2015 22:20:45 +0900 Subject: [PATCH] Implement BugCollection.hashCode() --- prod/net/jaekl/cfb/xml/BugCollection.java | 5 +++++ 1 file changed, 5 insertions(+) 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); + } } -- 2.30.2