Skip to content

Commit 2839862

Browse files
committed
Avoid cyclic package import for javadoc reference
1 parent da3b59e commit 2839862

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

spring-beans/src/main/java/org/springframework/beans/factory/config/ConfigurableBeanFactory.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
import org.springframework.beans.factory.BeanFactory;
2727
import org.springframework.beans.factory.HierarchicalBeanFactory;
2828
import org.springframework.beans.factory.NoSuchBeanDefinitionException;
29-
import org.springframework.beans.factory.support.AbstractBeanDefinition;
3029
import org.springframework.core.convert.ConversionService;
3130
import org.springframework.core.metrics.ApplicationStartup;
3231
import org.springframework.lang.Nullable;
@@ -152,7 +151,7 @@ public interface ConfigurableBeanFactory extends HierarchicalBeanFactory, Single
152151
* Set the {@link Executor} (possibly a {@link org.springframework.core.task.TaskExecutor})
153152
* for background bootstrapping.
154153
* @since 6.2
155-
* @see AbstractBeanDefinition#setBackgroundInit
154+
* @see org.springframework.beans.factory.support.AbstractBeanDefinition#setBackgroundInit
156155
*/
157156
void setBootstrapExecutor(@Nullable Executor executor);
158157

0 commit comments

Comments
 (0)