Skip to content

Commit 0bb24f2

Browse files
committed
Update documentation TODOs
Issue: SPR-9864
1 parent 6adb49b commit 0bb24f2

File tree

7 files changed

+20
-20
lines changed

7 files changed

+20
-20
lines changed

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
import org.springframework.web.context.support.GenericWebApplicationContext;
3535

3636
/**
37-
* TODO [SPR-5243] Document AbstractGenericWebContextLoader.
37+
* TODO [SPR-9864] Document AbstractGenericWebContextLoader.
3838
*
3939
* @author Sam Brannen
4040
* @since 3.2
@@ -47,7 +47,7 @@ public abstract class AbstractGenericWebContextLoader extends AbstractContextLoa
4747
// --- SmartContextLoader -----------------------------------------------
4848

4949
/**
50-
* TODO [SPR-5243] Document overridden loadContext(MergedContextConfiguration).
50+
* TODO [SPR-9864] Document overridden loadContext(MergedContextConfiguration).
5151
*
5252
* @see org.springframework.test.context.SmartContextLoader#loadContext(org.springframework.test.context.MergedContextConfiguration)
5353
*/
@@ -78,7 +78,7 @@ public final ConfigurableApplicationContext loadContext(MergedContextConfigurati
7878
}
7979

8080
/**
81-
* TODO [SPR-5243] Document configureWebResources().
81+
* TODO [SPR-9864] Document configureWebResources().
8282
*/
8383
protected void configureWebResources(GenericWebApplicationContext context,
8484
WebMergedContextConfiguration webMergedConfig) {
@@ -93,28 +93,28 @@ protected void configureWebResources(GenericWebApplicationContext context,
9393
}
9494

9595
/**
96-
* TODO [SPR-5243] Document customizeBeanFactory().
96+
* TODO [SPR-9864] Document customizeBeanFactory().
9797
*/
9898
protected void customizeBeanFactory(DefaultListableBeanFactory beanFactory,
9999
WebMergedContextConfiguration webMergedConfig) {
100100
}
101101

102102
/**
103-
* TODO [SPR-5243] Document loadBeanDefinitions().
103+
* TODO [SPR-9864] Document loadBeanDefinitions().
104104
*/
105105
protected abstract void loadBeanDefinitions(GenericWebApplicationContext context,
106106
WebMergedContextConfiguration webMergedConfig);
107107

108108
/**
109-
* TODO [SPR-5243] Document customizeContext().
109+
* TODO [SPR-9864] Document customizeContext().
110110
*/
111111
protected void customizeContext(GenericWebApplicationContext context, WebMergedContextConfiguration webMergedConfig) {
112112
}
113113

114114
// --- ContextLoader -------------------------------------------------------
115115

116116
/**
117-
* TODO [SPR-5243] Document overridden loadContext(String...).
117+
* TODO [SPR-9864] Document overridden loadContext(String...).
118118
*
119119
* @see org.springframework.test.context.ContextLoader#loadContext(java.lang.String[])
120120
*/

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
import org.springframework.util.Assert;
2727

2828
/**
29-
* TODO [SPR-5243] Document AnnotationConfigContextLoaderUtils.
29+
* TODO [SPR-9864] Document AnnotationConfigContextLoaderUtils.
3030
*
3131
* @author Sam Brannen
3232
* @since 3.2

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
import org.springframework.web.context.support.GenericWebApplicationContext;
2626

2727
/**
28-
* TODO [SPR-5243] Document AnnotationConfigWebContextLoader.
28+
* TODO [SPR-9864] Document AnnotationConfigWebContextLoader.
2929
*
3030
* @author Sam Brannen
3131
* @since 3.2

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
import org.springframework.web.context.support.GenericWebApplicationContext;
2222

2323
/**
24-
* TODO [SPR-5243] Document XmlWebContextLoader.
24+
* TODO [SPR-9864] Document XmlWebContextLoader.
2525
*
2626
* @author Sam Brannen
2727
* @since 3.2
@@ -36,7 +36,7 @@ protected String getResourceSuffix() {
3636
}
3737

3838
/**
39-
* TODO [SPR-5243] Document overridden loadBeanDefinitions().
39+
* TODO [SPR-9864] Document overridden loadBeanDefinitions().
4040
*
4141
* @see org.springframework.test.context.support.AbstractGenericWebContextLoader#loadBeanDefinitions(org.springframework.web.context.support.GenericWebApplicationContext, org.springframework.test.context.web.WebMergedContextConfiguration)
4242
*/

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
import java.lang.annotation.Target;
2525

2626
/**
27-
* TODO [SPR-5243] Document WebAppConfiguration.
27+
* TODO [SPR-9864] Document WebAppConfiguration.
2828
*
2929
* @author Sam Brannen
3030
* @since 3.2

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
import org.springframework.util.StringUtils;
2828

2929
/**
30-
* TODO [SPR-5243] Document WebMergedContextConfiguration.
30+
* TODO [SPR-9864] Document WebMergedContextConfiguration.
3131
*
3232
* @author Sam Brannen
3333
* @since 3.2
@@ -40,7 +40,7 @@ public class WebMergedContextConfiguration extends MergedContextConfiguration {
4040

4141

4242
/**
43-
* TODO [SPR-5243] Document WebMergedContextConfiguration constructor.
43+
* TODO [SPR-9864] Document WebMergedContextConfiguration constructor.
4444
*/
4545
public WebMergedContextConfiguration(
4646
Class<?> testClass,
@@ -55,7 +55,7 @@ public WebMergedContextConfiguration(
5555
}
5656

5757
/**
58-
* TODO [SPR-5243] Document getResourceBasePath().
58+
* TODO [SPR-9864] Document getResourceBasePath().
5959
*/
6060
public String getResourceBasePath() {
6161
return this.resourceBasePath;

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
import org.springframework.web.context.request.ServletWebRequest;
3434

3535
/**
36-
* TODO [SPR-5243] Document WebTestExecutionListener.
36+
* TODO [SPR-9864] Document WebTestExecutionListener.
3737
*
3838
* @author Sam Brannen
3939
* @since 3.2
@@ -44,7 +44,7 @@ public class WebTestExecutionListener extends AbstractTestExecutionListener {
4444

4545

4646
/**
47-
* TODO [SPR-5243] Document overridden prepareTestInstance().
47+
* TODO [SPR-9864] Document overridden prepareTestInstance().
4848
*
4949
* @see org.springframework.test.context.support.AbstractTestExecutionListener#prepareTestInstance(org.springframework.test.context.TestContext)
5050
*/
@@ -54,7 +54,7 @@ public void prepareTestInstance(TestContext testContext) throws Exception {
5454
}
5555

5656
/**
57-
* TODO [SPR-5243] Document overridden beforeTestMethod().
57+
* TODO [SPR-9864] Document overridden beforeTestMethod().
5858
*
5959
* @see org.springframework.test.context.support.AbstractTestExecutionListener#beforeTestMethod(org.springframework.test.context.TestContext)
6060
*/
@@ -64,7 +64,7 @@ public void beforeTestMethod(TestContext testContext) throws Exception {
6464
}
6565

6666
/**
67-
* TODO [SPR-5243] Document setUpRequestContext().
67+
* TODO [SPR-9864] Document setUpRequestContext().
6868
*
6969
* @param testContext
7070
* @param servletContext
@@ -107,7 +107,7 @@ private void setUpRequestContextIfNecessary(TestContext testContext) {
107107
}
108108

109109
/**
110-
* TODO [SPR-5243] Document overridden afterTestMethod().
110+
* TODO [SPR-9864] Document overridden afterTestMethod().
111111
*
112112
* @see org.springframework.test.context.support.AbstractTestExecutionListener#afterTestMethod(org.springframework.test.context.TestContext)
113113
*/

0 commit comments

Comments
 (0)