Remove duplicate "property" in PropertyCacheKey.toString()

This commit is contained in:
fengyuanwei
2020-12-07 14:45:40 +08:00
committed by Juergen Hoeller
parent 2b77c08e09
commit 07fadae27d

View File

@@ -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