File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
spring-aop/src/main/java/org/springframework/aop/interceptor Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2002-2017 the original author or authors.
2
+ * Copyright 2002-2020 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.
@@ -103,8 +103,8 @@ protected String createInvocationTraceName(MethodInvocation invocation) {
103
103
if (this .logTargetClassInvocation && clazz .isInstance (invocation .getThis ())) {
104
104
clazz = invocation .getThis ().getClass ();
105
105
}
106
- String clazzName = clazz .getName ();
107
- return getPrefix () + clazzName + '.' + method .getName () + getSuffix ();
106
+ String className = clazz .getName ();
107
+ return getPrefix () + className + '.' + method .getName () + getSuffix ();
108
108
}
109
109
110
110
}
You can’t perform that action at this time.
0 commit comments