Skip to content

Commit

Permalink
Add Javadoc since to InjectedElement.shouldInject()
Browse files Browse the repository at this point in the history
  • Loading branch information
izeye committed May 22, 2023
1 parent e5ee369 commit 6649711
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -243,6 +243,12 @@ protected final void checkResourceType(Class<?> resourceType) {
}
}

/**
* Whether the property values should be injected.
* @param pvs property values to check
* @return whether the property values should be injected
* @since 6.0.10
*/
protected boolean shouldInject(@Nullable PropertyValues pvs) {
if (this.isField) {
return true;
Expand Down

0 comments on commit 6649711

Please sign in to comment.