Add Javadoc since to InjectedElement.shouldInject()
See gh-30512
This commit is contained in:
parent
1721e42988
commit
15a7f43c7b
|
@ -243,6 +243,12 @@ public class InjectionMetadata {
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 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;
|
||||
|
|
Loading…
Reference in New Issue