We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c637f0 commit aaa10e9Copy full SHA for aaa10e9
spring-aop/src/testFixtures/java/org/springframework/aop/testfixture/advice/MethodCounter.java
@@ -19,6 +19,7 @@
19
import java.io.Serializable;
20
import java.lang.reflect.Method;
21
import java.util.HashMap;
22
+import java.util.Map;
23
24
/**
25
* Abstract superclass for counting advices etc.
@@ -31,7 +32,7 @@
31
32
public class MethodCounter implements Serializable {
33
34
/** Method name --> count, does not understand overloading */
- private HashMap<String, Integer> map = new HashMap<>();
35
+ private Map<String, Integer> map = new HashMap<>();
36
37
private int allCount;
38
0 commit comments