Remove duplicate "property" in PropertyCacheKey.toString()
This commit is contained in:
parent
2b77c08e09
commit
07fadae27d
|
@ -628,8 +628,8 @@ public class ReflectivePropertyAccessor implements PropertyAccessor {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
return "CacheKey [clazz=" + this.clazz.getName() + ", property=" + this.property + ", " +
|
return "CacheKey [clazz=" + this.clazz.getName() + ", property=" + this.property +
|
||||||
this.property + ", targetIsClass=" + this.targetIsClass + "]";
|
", targetIsClass=" + this.targetIsClass + "]";
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in New Issue