File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
spring-aop/src/testFixtures/java/org/springframework/aop/testfixture/advice Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2002-2020 the original author or authors.
2
+ * Copyright 2002-2022 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
19
19
import java .io .Serializable ;
20
20
import java .lang .reflect .Method ;
21
21
import java .util .HashMap ;
22
+ import java .util .Map ;
22
23
23
24
/**
24
25
* Abstract superclass for counting advices etc.
31
32
public class MethodCounter implements Serializable {
32
33
33
34
/** Method name --> count, does not understand overloading */
34
- private HashMap <String , Integer > map = new HashMap <>();
35
+ private Map <String , Integer > map = new HashMap <>();
35
36
36
37
private int allCount ;
37
38
You can’t perform that action at this time.
0 commit comments