Skip to content

Commit

Permalink
Polishing
Browse files Browse the repository at this point in the history
  • Loading branch information
jhoeller committed Dec 8, 2020
1 parent 07fadae commit 01fb4db
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@

/**
* A powerful {@link PropertyAccessor} that uses reflection to access properties
* for reading and possibly also for writing.
* for reading and possibly also for writing on a target instance.
*
* <p>A property can be referenced through a public getter method (when being read)
* or a public setter method (when being written), and also as a public field.
Expand Down Expand Up @@ -98,8 +98,8 @@ public ReflectivePropertyAccessor() {
}

/**
* Create a new property accessor for reading and possibly writing.
* @param allowWrite whether to also allow for write operations
* Create a new property accessor for reading and possibly also writing.
* @param allowWrite whether to allow write operations on a target instance
* @since 4.3.15
* @see #canWrite
*/
Expand Down Expand Up @@ -628,7 +628,7 @@ public int hashCode() {

@Override
public String toString() {
return "CacheKey [clazz=" + this.clazz.getName() + ", property=" + this.property +
return "PropertyCacheKey [clazz=" + this.clazz.getName() + ", property=" + this.property +
", targetIsClass=" + this.targetIsClass + "]";
}

Expand Down

0 comments on commit 01fb4db

Please sign in to comment.