Implement BugCollection.hashCode()
[cfb.git] / 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);
+       }
 }