You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by mt...@apache.org on 2022/02/11 12:48:30 UTC

[maven-surefire] branch master updated: Remove unused import that triggers Checkstyle

This is an automated email from the ASF dual-hosted git repository.

mthmulders pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-surefire.git


The following commit(s) were added to refs/heads/master by this push:
     new f243cd2  Remove unused import that triggers Checkstyle
f243cd2 is described below

commit f243cd2799af5a7d5e4468726a9b466eaec8038f
Author: Maarten Mulders <mt...@apache.org>
AuthorDate: Fri Feb 11 13:48:08 2022 +0100

    Remove unused import that triggers Checkstyle
---
 .../plugin/surefire/extensions/junit5/JUnit5ConsoleOutputReporter.java   | 1 -
 1 file changed, 1 deletion(-)

diff --git a/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/extensions/junit5/JUnit5ConsoleOutputReporter.java b/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/extensions/junit5/JUnit5ConsoleOutputReporter.java
index a127b71..3d8e8b0 100644
--- a/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/extensions/junit5/JUnit5ConsoleOutputReporter.java
+++ b/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/extensions/junit5/JUnit5ConsoleOutputReporter.java
@@ -21,7 +21,6 @@ package org.apache.maven.plugin.surefire.extensions.junit5;
 
 import org.apache.maven.plugin.surefire.extensions.SurefireConsoleOutputReporter;
 import org.apache.maven.plugin.surefire.report.ConsoleOutputFileReporter;
-import org.apache.maven.plugin.surefire.report.StatelessXmlReporter;
 import org.apache.maven.surefire.extensions.ConsoleOutputReportEventListener;
 
 import java.io.File;