[ http://issues.apache.org/jira/browse/NUTCH-263?page=comments#action_12377752 ]
Andrzej Bialecki commented on NUTCH-263: ----------------------------------------- Yes, definitely. I didn't have time to analyze the code so thoroughly (I hope Stefan will pipe in :) ), but the ideal solution would be to avoid creating any objects, even if sizes are equal ... > MapWritable.equals() doesn't work properly > ------------------------------------------ > > Key: NUTCH-263 > URL: http://issues.apache.org/jira/browse/NUTCH-263 > Project: Nutch > Type: Bug > Versions: 0.8-dev > Reporter: Andrzej Bialecki > Attachments: patch1.txt > > MapWritable.equals() is sensitive to the order in which map entries have been > created. E.g. this fails but it should succeed: > MapWritable map1 = new MapWritable(); > MapWritable map2 = new MapWritable(); > map1.put(new UTF8("key1"), new UTF8("val1")); > map1.put(new UTF8("key2"), new UTF8("val2")); > map2.put(new UTF8("key2"), new UTF8("val2")); > map2.put(new UTF8("key1"), new UTF8("val1")); > assertTrue(map1.equals(map2)); > Users expect that this should not be the case, i.e. this class should follow > the same rules as Map.equals() ("Returns true if the given object is also a > map and the two Maps represent the same mappings"). -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira ------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ Nutch-developers mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/nutch-developers
