You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ti...@apache.org on 2019/05/09 18:08:53 UTC

[maven-surefire] branch SUREFIRE-1617 updated: investigating

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

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


The following commit(s) were added to refs/heads/SUREFIRE-1617 by this push:
     new 37d4a36  investigating
37d4a36 is described below

commit 37d4a36013e9eb45ac826c8d756a362a04acd331
Author: tibordigana <ti...@apache.org>
AuthorDate: Thu May 9 20:08:43 2019 +0200

    investigating
---
 .../java/org/apache/maven/plugin/surefire/AbstractSurefireMojo.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/AbstractSurefireMojo.java b/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/AbstractSurefireMojo.java
index 856a527..bba23cf 100644
--- a/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/AbstractSurefireMojo.java
+++ b/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/AbstractSurefireMojo.java
@@ -1223,7 +1223,7 @@ public abstract class AbstractSurefireMojo
         if ( !getConsoleLogger().isDebugEnabled() && forkConfiguration != null )
         {
             File tempDirectory = forkConfiguration.getTempDirectory();
-            try
+            /*try
             {
                 FileUtils.deleteDirectory( tempDirectory );
             }
@@ -1231,7 +1231,7 @@ public abstract class AbstractSurefireMojo
             {
                 getConsoleLogger()
                         .warning( "Could not delete temp directory " + tempDirectory + " because " + e.getMessage() );
-            }
+            }*/
         }
     }