Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIgor Fedorenko2013-03-12 23:15:55 +0000
committerIgor Fedorenko2013-03-12 23:15:55 +0000
commit536479b9efd6d0f69210f22b66a06d097a06665f (patch)
tree57a91743f347cd45bc9413355c0706d01811aed1
parentd4017dc34b0756e6a98fdbb2e772b9777a453e94 (diff)
downloadm2e-core-536479b9efd6d0f69210f22b66a06d097a06665f.tar.gz
m2e-core-536479b9efd6d0f69210f22b66a06d097a06665f.tar.xz
m2e-core-536479b9efd6d0f69210f22b66a06d097a06665f.zip
380484 fixed wrong default number of threads
Signed-off-by: Igor Fedorenko <igor@ifedorenko.com>
-rw-r--r--org.eclipse.m2e.launching/src/org/eclipse/m2e/ui/internal/launch/MavenLaunchMainTab.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.m2e.launching/src/org/eclipse/m2e/ui/internal/launch/MavenLaunchMainTab.java b/org.eclipse.m2e.launching/src/org/eclipse/m2e/ui/internal/launch/MavenLaunchMainTab.java
index b95feb9e..6d858fe9 100644
--- a/org.eclipse.m2e.launching/src/org/eclipse/m2e/ui/internal/launch/MavenLaunchMainTab.java
+++ b/org.eclipse.m2e.launching/src/org/eclipse/m2e/ui/internal/launch/MavenLaunchMainTab.java
@@ -607,7 +607,7 @@ public class MavenLaunchMainTab extends AbstractLaunchConfigurationTab implement
this.skipTestsButton.setSelection(getAttribute(configuration, ATTR_SKIP_TESTS, false));
this.nonRecursiveButton.setSelection(getAttribute(configuration, ATTR_NON_RECURSIVE, false));
this.enableWorkspaceResolution.setSelection(getAttribute(configuration, ATTR_WORKSPACE_RESOLUTION, false));
- this.threadsCombo.select(getAttribute(configuration, ATTR_THREADS, 1));
+ this.threadsCombo.select(getAttribute(configuration, ATTR_THREADS, 0));
String location = getAttribute(configuration, ATTR_RUNTIME, ""); //$NON-NLS-1$
MavenRuntime runtime = runtimeManager.getRuntime(location);

Back to the top