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 <[email protected]> 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 <[email protected]> Authored: Sun Jul 16 11:48:31 2017 -0400 Committer: Tibor17 <[email protected]> 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.
