Remove JDK1.4 classes from CVS

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@131420 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stephen Colebourne 2003-12-08 22:05:10 +00:00
parent c9fc511b34
commit 9e9b4858b1
1 changed files with 6 additions and 7 deletions

View File

@ -1,5 +1,5 @@
/*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/MapPerformance.java,v 1.2 2003/11/18 23:23:05 scolebourne Exp $
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/test/org/apache/commons/collections/MapPerformance.java,v 1.3 2003/12/08 22:05:10 scolebourne Exp $
* ====================================================================
*
* The Apache Software License, Version 1.1
@ -60,7 +60,6 @@ package org.apache.commons.collections;
import java.util.Collection;
import java.util.Collections;
import java.util.HashMap;
import java.util.LinkedHashMap;
import java.util.Map;
import java.util.Set;
import java.util.TreeMap;
@ -97,11 +96,11 @@ public class MapPerformance {
Map fastHashMap = new FastHashMap(hashMap);
Map treeMap = new TreeMap(hashMap);
Map seqMap = new SequencedHashMap(hashMap);
Map linkedMap = new LinkedHashMap(hashMap);
Map syncMap = Collections.unmodifiableMap(new HashMap(hashMap));
Map bucketMap = new StaticBucketMap();
bucketMap.putAll(hashMap);
Map doubleMap = new DoubleOrderedMap(hashMap);
// Map linkedMap = new LinkedHashMap(hashMap);
// Map syncMap = Collections.unmodifiableMap(new HashMap(hashMap));
// Map bucketMap = new StaticBucketMap();
// bucketMap.putAll(hashMap);
// Map doubleMap = new DoubleOrderedMap(hashMap);
// dummy is required as the VM seems to hotspot the first call to the
// test method with the given type