Skip to content

Commit 648629f

Browse files
committed
Polish Javadoc for SpringExtension
1 parent f2bf227 commit 648629f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

spring-test/src/main/java/org/springframework/test/context/junit/jupiter/SpringExtension.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ public class SpringExtension implements BeforeAllCallback, AfterAllCallback, Tes
153153
* Returns {@link ExtensionContextScope#TEST_METHOD ExtensionContextScope.TEST_METHOD}.
154154
* <p>This can be effectively overridden by annotating a test class with
155155
* {@code @SpringExtensionConfig(useTestClassScopedExtensionContext = true)}.
156-
* See the {@link SpringExtension class-level Javadoc} for further details.
156+
* See the {@linkplain SpringExtension class-level Javadoc} for further details.
157157
* @since 7.0
158158
* @see SpringExtensionConfig#useTestClassScopedExtensionContext()
159159
*/
@@ -391,7 +391,7 @@ private boolean supportsApplicationEvents(Class<?> parameterType, Executable exe
391391

392392

393393
/**
394-
* Get the {@link ApplicationContext} associated with the supplied {@code ExtensionContext}.
394+
* Get the {@link ApplicationContext} associated with the supplied {@link ExtensionContext}.
395395
* @param context the current {@code ExtensionContext} (never {@code null})
396396
* @return the application context
397397
* @throws IllegalStateException if an error occurs while retrieving the application context
@@ -402,7 +402,7 @@ public static ApplicationContext getApplicationContext(ExtensionContext context)
402402
}
403403

404404
/**
405-
* Get the {@link TestContextManager} associated with the supplied {@code ExtensionContext}.
405+
* Get the {@link TestContextManager} associated with the supplied {@link ExtensionContext}.
406406
* @return the {@code TestContextManager} (never {@code null})
407407
*/
408408
static TestContextManager getTestContextManager(ExtensionContext context) {

0 commit comments

Comments
 (0)