fixed funky line feeds and indicated that MultiHashMap is new to
Collections 2.x git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@130584 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
d5ab2edce1
commit
3c53553bb2
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/TestMultiHashMap.java,v 1.2 2002/02/22 02:18:50 mas Exp $
|
||||
* $Revision: 1.2 $
|
||||
* $Date: 2002/02/22 02:18:50 $
|
||||
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/TestMultiHashMap.java,v 1.3 2002/02/26 00:13:37 morgand Exp $
|
||||
* $Revision: 1.3 $
|
||||
* $Date: 2002/02/26 00:13:37 $
|
||||
*
|
||||
* ====================================================================
|
||||
*
|
||||
|
@ -90,6 +90,11 @@ public class TestMultiHashMap extends TestMap
|
|||
junit.textui.TestRunner.main(testCaseName);
|
||||
}
|
||||
|
||||
// MutltiHashMap was introduced in Collections 2.x
|
||||
public int getCompatibilityVersion() {
|
||||
return 2;
|
||||
}
|
||||
|
||||
public Map makeEmptyMap() {
|
||||
return new MultiHashMap();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue