Skip to content

Commit

Permalink
[MNG-6363] - Remove secret thread configuration property from code
Browse files Browse the repository at this point in the history
khmarbaise committed Apr 22, 2018
1 parent ef41c0e commit 9c118d3
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
@@ -124,8 +124,6 @@ public class MavenCli
{
public static final String LOCAL_REPO_PROPERTY = "maven.repo.local";

public static final String THREADS_DEPRECATED = "maven.threads.experimental";

public static final String MULTIMODULE_PROJECT_DIRECTORY = "maven.multiModuleProjectDirectory";

public static final String USER_HOME = System.getProperty( "user.home" );
@@ -1548,8 +1546,7 @@ else if ( commandLine.hasOption( CLIManager.ALSO_MAKE ) && commandLine.hasOption
//
final String threadConfiguration = commandLine.hasOption( CLIManager.THREADS )
? commandLine.getOptionValue( CLIManager.THREADS )
: request.getSystemProperties().getProperty(
MavenCli.THREADS_DEPRECATED ); // TODO Remove this setting. Note that the int-tests use it
: null;

if ( threadConfiguration != null )
{

0 comments on commit 9c118d3

Please sign in to comment.