Browse Source

Merge pull request #29326 from izeye

* pr/29326:
  Add missing since on setCurrentlyInvokedFactoryMethod()

Closes gh-29326
pull/29342/head
Stephane Nicoll 3 years ago
parent
commit
d19f63fc2b
  1. 1
      spring-beans/src/main/java/org/springframework/beans/factory/support/SimpleInstantiationStrategy.java

1
spring-beans/src/main/java/org/springframework/beans/factory/support/SimpleInstantiationStrategy.java

@ -56,6 +56,7 @@ public class SimpleInstantiationStrategy implements InstantiationStrategy {
/** /**
* Set the factory method currently being invoked or {@code null} to reset. * Set the factory method currently being invoked or {@code null} to reset.
* @param method the factory method currently being invoked or {@code null} * @param method the factory method currently being invoked or {@code null}
* @since 6.0
*/ */
public static void setCurrentlyInvokedFactoryMethod(@Nullable Method method) { public static void setCurrentlyInvokedFactoryMethod(@Nullable Method method) {
currentlyInvokedFactoryMethod.set(method); currentlyInvokedFactoryMethod.set(method);

Loading…
Cancel
Save