Browse Source

Fix CheckStyle violations

See gh-18490
pull/22500/head
Sam Brannen 7 years ago
parent
commit
dd1330d05e
  1. 2
      spring-test/src/main/java/org/springframework/test/context/event/EventPublishingTestExecutionListener.java
  2. 6
      spring-test/src/main/java/org/springframework/test/context/event/annotation/PrepareTestInstance.java
  3. 2
      spring-test/src/main/java/org/springframework/test/context/event/annotation/package-info.java
  4. 2
      spring-test/src/main/java/org/springframework/test/context/event/package-info.java

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

@ -28,7 +28,7 @@ import org.springframework.test.context.support.AbstractTestExecutionListener; @@ -28,7 +28,7 @@ import org.springframework.test.context.support.AbstractTestExecutionListener;
* <p>These events may be consumed for various reasons, such as resetting <em>mock</em>
* beans or tracing test execution. Since these events may be consumed by regular
* Spring beans, they can be shared among different test classes.
*
*
* <h3>Supported Events</h3>
* <ul>
* <li>{@link BeforeTestClassEvent}</li>

6
spring-test/src/main/java/org/springframework/test/context/event/annotation/PrepareTestInstance.java

@ -16,13 +16,13 @@ @@ -16,13 +16,13 @@
package org.springframework.test.context.event.annotation;
import org.springframework.context.event.EventListener;
import org.springframework.test.context.event.PrepareTestInstanceEvent;
import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import org.springframework.context.event.EventListener;
import org.springframework.test.context.event.PrepareTestInstanceEvent;
import static java.lang.annotation.ElementType.ANNOTATION_TYPE;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

2
spring-test/src/main/java/org/springframework/test/context/event/annotation/package-info.java

@ -1,4 +1,4 @@ @@ -1,4 +1,4 @@
/**
* Test event annotations for the <em>Spring TestContext Framework</em>.
*/
package org.springframework.test.context.event.annotation;
package org.springframework.test.context.event.annotation;

2
spring-test/src/main/java/org/springframework/test/context/event/package-info.java

@ -1,4 +1,4 @@ @@ -1,4 +1,4 @@
/**
* Test event support classes for the <em>Spring TestContext Framework</em>.
*/
package org.springframework.test.context.event;
package org.springframework.test.context.event;

Loading…
Cancel
Save