Skip to content

Commit 07fadae

Browse files
fengyuanweijhoeller
authored andcommitted
Remove duplicate "property" in PropertyCacheKey.toString()
1 parent 2b77c08 commit 07fadae

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spring-expression/src/main/java/org/springframework/expression/spel/support/ReflectivePropertyAccessor.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -628,8 +628,8 @@ public int hashCode() {
628628

629629
@Override
630630
public String toString() {
631-
return "CacheKey [clazz=" + this.clazz.getName() + ", property=" + this.property + ", " +
632-
this.property + ", targetIsClass=" + this.targetIsClass + "]";
631+
return "CacheKey [clazz=" + this.clazz.getName() + ", property=" + this.property +
632+
", targetIsClass=" + this.targetIsClass + "]";
633633
}
634634

635635
@Override

0 commit comments

Comments
 (0)