Browse Source

Remove duplicate "property" in PropertyCacheKey.toString()

pull/26254/head
fengyuanwei 4 years ago committed by Juergen Hoeller
parent
commit
07fadae27d
  1. 4
      spring-expression/src/main/java/org/springframework/expression/spel/support/ReflectivePropertyAccessor.java

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

@ -628,8 +628,8 @@ public class ReflectivePropertyAccessor implements PropertyAccessor { @@ -628,8 +628,8 @@ public class ReflectivePropertyAccessor implements PropertyAccessor {
@Override
public String toString() {
return "CacheKey [clazz=" + this.clazz.getName() + ", property=" + this.property + ", " +
this.property + ", targetIsClass=" + this.targetIsClass + "]";
return "CacheKey [clazz=" + this.clazz.getName() + ", property=" + this.property +
", targetIsClass=" + this.targetIsClass + "]";
}
@Override

Loading…
Cancel
Save