Ensure name is used

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1477793 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2013-04-30 19:37:29 +00:00
parent d403368879
commit d31ea317a5
1 changed files with 1 additions and 1 deletions

View File

@ -804,7 +804,7 @@ public class MapUtilsTest extends BulkTest {
} }
public int compareTo(X o) { public int compareTo(X o) {
return key - o.key; return key - o.key | name.compareTo(o.name);
} }
} }