From 843221b4481be10f89e269cf5ba5505126bf3c8f Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Thu, 4 Aug 2022 11:51:56 +0300 Subject: [PATCH] Fix broken Javadoc links See gh-28906 --- .../test/context/MergedContextConfiguration.java | 2 +- .../test/context/support/AbstractContextLoader.java | 2 +- .../test/context/web/WebMergedContextConfiguration.java | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/spring-test/src/main/java/org/springframework/test/context/MergedContextConfiguration.java b/spring-test/src/main/java/org/springframework/test/context/MergedContextConfiguration.java index 5d775e664ea..97841c8c801 100644 --- a/spring-test/src/main/java/org/springframework/test/context/MergedContextConfiguration.java +++ b/spring-test/src/main/java/org/springframework/test/context/MergedContextConfiguration.java @@ -62,7 +62,7 @@ import org.springframework.util.StringUtils; * @see ActiveProfiles * @see TestPropertySource * @see ContextConfigurationAttributes - * @see SmartContextLoader#loadContext(MergedContextConfiguration, boolean) + * @see SmartContextLoader#loadContext(MergedContextConfiguration) */ public class MergedContextConfiguration implements Serializable { diff --git a/spring-test/src/main/java/org/springframework/test/context/support/AbstractContextLoader.java b/spring-test/src/main/java/org/springframework/test/context/support/AbstractContextLoader.java index af99f676bdd..a78936419b2 100644 --- a/spring-test/src/main/java/org/springframework/test/context/support/AbstractContextLoader.java +++ b/spring-test/src/main/java/org/springframework/test/context/support/AbstractContextLoader.java @@ -128,7 +128,7 @@ public abstract class AbstractContextLoader implements SmartContextLoader { * @see TestPropertySourceUtils#addPropertiesFilesToEnvironment * @see TestPropertySourceUtils#addInlinedPropertiesToEnvironment * @see ApplicationContextInitializer#initialize(ConfigurableApplicationContext) - * @see #loadContext(MergedContextConfiguration, boolean) + * @see #loadContext(MergedContextConfiguration) * @see ConfigurableApplicationContext#setId */ protected void prepareContext(ConfigurableApplicationContext context, MergedContextConfiguration mergedConfig) { diff --git a/spring-test/src/main/java/org/springframework/test/context/web/WebMergedContextConfiguration.java b/spring-test/src/main/java/org/springframework/test/context/web/WebMergedContextConfiguration.java index 35eece33fb0..a1663ef8f5d 100644 --- a/spring-test/src/main/java/org/springframework/test/context/web/WebMergedContextConfiguration.java +++ b/spring-test/src/main/java/org/springframework/test/context/web/WebMergedContextConfiguration.java @@ -50,7 +50,7 @@ import org.springframework.util.StringUtils; * @see org.springframework.test.context.ContextConfiguration * @see org.springframework.test.context.ActiveProfiles * @see org.springframework.test.context.ContextConfigurationAttributes - * @see org.springframework.test.context.SmartContextLoader#loadContext(MergedContextConfiguration, boolean) + * @see org.springframework.test.context.SmartContextLoader#loadContext(MergedContextConfiguration) */ public class WebMergedContextConfiguration extends MergedContextConfiguration {