Skip to content

Commit

Permalink
Remove duplicate "property" in PropertyCacheKey.toString()
Browse files Browse the repository at this point in the history
  • Loading branch information
fengyuanwei authored and jhoeller committed Dec 8, 2020
1 parent 2b77c08 commit 07fadae
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -628,8 +628,8 @@ public int hashCode() {

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

0 comments on commit 07fadae

Please sign in to comment.