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 2017/07/28 22:10:52 UTC

maven-surefire git commit: SUREFIRE-1391: Eliminate redundant call to process systemPropertyVariables in the calculation of effective properties

Repository: maven-surefire
Updated Branches:
  refs/heads/master 1b0aa38f1 -> 26527d10c


SUREFIRE-1391: Eliminate redundant call to process systemPropertyVariables in the calculation of effective properties

Signed-off-by: Andrew Cohen <ac...@gmail.com>


Project: http://git-wip-us.apache.org/repos/asf/maven-surefire/repo
Commit: http://git-wip-us.apache.org/repos/asf/maven-surefire/commit/26527d10
Tree: http://git-wip-us.apache.org/repos/asf/maven-surefire/tree/26527d10
Diff: http://git-wip-us.apache.org/repos/asf/maven-surefire/diff/26527d10

Branch: refs/heads/master
Commit: 26527d10c4835c254f8d7d2efb2227a30697f674
Parents: 1b0aa38
Author: Andrew Cohen <ac...@gmail.com>
Authored: Sun Jul 16 11:48:31 2017 -0400
Committer: Tibor17 <ti...@apache.org>
Committed: Sat Jul 29 00:04:38 2017 +0200

----------------------------------------------------------------------
 .../java/org/apache/maven/plugin/surefire/SurefireProperties.java   | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/maven-surefire/blob/26527d10/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/SurefireProperties.java
----------------------------------------------------------------------
diff --git a/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/SurefireProperties.java b/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/SurefireProperties.java
index 6609e61..8d080b7 100644
--- a/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/SurefireProperties.java
+++ b/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/SurefireProperties.java
@@ -148,7 +148,6 @@ public class SurefireProperties
         result.copyPropertiesFrom( props );
 
         copyProperties( result, systemPropertyVariables );
-        copyProperties( result, systemPropertyVariables );
 
         // We used to take all of our system properties and dump them in with the
         // user specified properties for SUREFIRE-121, causing SUREFIRE-491.