diff --git a/spring-test/src/main/java/org/springframework/test/context/event/EventPublishingTestExecutionListener.java b/spring-test/src/main/java/org/springframework/test/context/event/EventPublishingTestExecutionListener.java index d25af05b3d38..d6b5c9cef4f3 100644 --- a/spring-test/src/main/java/org/springframework/test/context/event/EventPublishingTestExecutionListener.java +++ b/spring-test/src/main/java/org/springframework/test/context/event/EventPublishingTestExecutionListener.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2019 the original author or authors. + * Copyright 2002-2022 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -17,16 +17,12 @@ package org.springframework.test.context.event; import org.springframework.test.context.TestContext; -import org.springframework.test.context.TestExecutionListener; import org.springframework.test.context.support.AbstractTestExecutionListener; /** - * {@link org.springframework.test.context.TestExecutionListener TestExecutionListener} - * that publishes test execution events to the + * {@code TestExecutionListener} that publishes test execution events to the * {@link org.springframework.context.ApplicationContext ApplicationContext} - * for the currently executing test. Events are only published if the - * {@code ApplicationContext} {@linkplain TestContext#hasApplicationContext() - * has already been loaded}. + * for the currently executing test. * *

Supported Events

*