Browse Source

Fix broken Javadoc links

See gh-28906
pull/28922/head
Sam Brannen 4 years ago
parent
commit
843221b448
  1. 2
      spring-test/src/main/java/org/springframework/test/context/MergedContextConfiguration.java
  2. 2
      spring-test/src/main/java/org/springframework/test/context/support/AbstractContextLoader.java
  3. 2
      spring-test/src/main/java/org/springframework/test/context/web/WebMergedContextConfiguration.java

2
spring-test/src/main/java/org/springframework/test/context/MergedContextConfiguration.java

@ -62,7 +62,7 @@ import org.springframework.util.StringUtils; @@ -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 {

2
spring-test/src/main/java/org/springframework/test/context/support/AbstractContextLoader.java

@ -128,7 +128,7 @@ public abstract class AbstractContextLoader implements SmartContextLoader { @@ -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) {

2
spring-test/src/main/java/org/springframework/test/context/web/WebMergedContextConfiguration.java

@ -50,7 +50,7 @@ import org.springframework.util.StringUtils; @@ -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 {

Loading…
Cancel
Save