forked from pool/plexus-utils
21 lines
810 B
Diff
21 lines
810 B
Diff
--- plexus-utils-plexus-utils-3.3.0/src/main/java/org/codehaus/plexus/util/introspection/ClassMap.java 2022-03-24 06:42:26.828858166 +0100
|
|
+++ plexus-utils-plexus-utils-3.3.0/src/main/java/org/codehaus/plexus/util/introspection/ClassMap.java 2022-03-24 06:43:39.629312093 +0100
|
|
@@ -18,7 +18,7 @@
|
|
|
|
import java.lang.reflect.Method;
|
|
import java.lang.reflect.Modifier;
|
|
-import java.util.Hashtable;
|
|
+import java.util.HashMap;
|
|
import java.util.Map;
|
|
|
|
/**
|
|
@@ -50,7 +50,7 @@
|
|
/**
|
|
* Cache of Methods, or CACHE_MISS, keyed by method name and actual arguments used to find it.
|
|
*/
|
|
- private Map<String, Object> methodCache = new Hashtable<String, Object>();
|
|
+ private Map<String, Object> methodCache = new HashMap<String, Object>();
|
|
|
|
private final MethodMap methodMap = new MethodMap();
|
|
|