We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b75fa9d commit 1e64eedCopy full SHA for 1e64eed
spring-beans/src/main/java/org/springframework/beans/factory/support/BeanDefinitionBuilder.java
@@ -166,6 +166,16 @@ public BeanDefinitionBuilder setFactoryMethod(String factoryMethod) {
166
return this;
167
}
168
169
+ /**
170
+ * Add an indexed constructor arg value. The current index is tracked internally
171
+ * and all additions are at the present point.
172
+ * @deprecated since Spring 2.5, in favor of {@link #addConstructorArgValue}
173
+ */
174
+ @Deprecated
175
+ public BeanDefinitionBuilder addConstructorArg(Object value) {
176
+ return addConstructorArgValue(value);
177
+ }
178
+
179
/**
180
* Add an indexed constructor arg value. The current index is tracked internally
181
* and all additions are at the present point.
0 commit comments