Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Rennie2013-12-03 15:44:32 +0000
committerMike Rennie2013-12-03 15:44:32 +0000
commit2eb0896efaba7090f49d572834b98b7d4f94fc73 (patch)
tree15c8d3f3ecff042e3b4814ed37dc14e722e0f702
parent4b8a0314710d51fcd9d55f1cac586dbd82bc3883 (diff)
downloadwebtools.jsdt.debug-2eb0896efaba7090f49d572834b98b7d4f94fc73.tar.gz
webtools.jsdt.debug-2eb0896efaba7090f49d572834b98b7d4f94fc73.tar.xz
webtools.jsdt.debug-2eb0896efaba7090f49d572834b98b7d4f94fc73.zip
Bug 422755 - Debug configuration Values copying from one configuration
to another. Signed-off-by: Mike Rennie <Michael_Rennie@ca.ibm.com>
-rw-r--r--bundles/org.eclipse.wst.jsdt.debug.rhino.ui/META-INF/MANIFEST.MF2
-rw-r--r--bundles/org.eclipse.wst.jsdt.debug.rhino.ui/pom.xml2
-rw-r--r--bundles/org.eclipse.wst.jsdt.debug.rhino.ui/src/org/eclipse/wst/jsdt/debug/internal/rhino/ui/launching/RhinoMainTab.java5
3 files changed, 6 insertions, 3 deletions
diff --git a/bundles/org.eclipse.wst.jsdt.debug.rhino.ui/META-INF/MANIFEST.MF b/bundles/org.eclipse.wst.jsdt.debug.rhino.ui/META-INF/MANIFEST.MF
index 931bcdc..99b6758 100644
--- a/bundles/org.eclipse.wst.jsdt.debug.rhino.ui/META-INF/MANIFEST.MF
+++ b/bundles/org.eclipse.wst.jsdt.debug.rhino.ui/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name
Bundle-SymbolicName: org.eclipse.wst.jsdt.debug.rhino.ui;singleton:=true
-Bundle-Version: 1.0.200.qualifier
+Bundle-Version: 1.0.300.qualifier
Bundle-Activator: org.eclipse.wst.jsdt.debug.internal.rhino.ui.RhinoUIPlugin
Bundle-Vendor: %providerName
Require-Bundle: org.eclipse.ui,
diff --git a/bundles/org.eclipse.wst.jsdt.debug.rhino.ui/pom.xml b/bundles/org.eclipse.wst.jsdt.debug.rhino.ui/pom.xml
index ee7c948..caf9685 100644
--- a/bundles/org.eclipse.wst.jsdt.debug.rhino.ui/pom.xml
+++ b/bundles/org.eclipse.wst.jsdt.debug.rhino.ui/pom.xml
@@ -22,6 +22,6 @@
<groupId>org.eclipse.webtools.jsdt</groupId>
<artifactId>org.eclipse.wst.jsdt.debug.rhino.ui</artifactId>
- <version>1.0.200-SNAPSHOT</version>
+ <version>1.0.300-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
diff --git a/bundles/org.eclipse.wst.jsdt.debug.rhino.ui/src/org/eclipse/wst/jsdt/debug/internal/rhino/ui/launching/RhinoMainTab.java b/bundles/org.eclipse.wst.jsdt.debug.rhino.ui/src/org/eclipse/wst/jsdt/debug/internal/rhino/ui/launching/RhinoMainTab.java
index 6f7d3c3..164d56e 100644
--- a/bundles/org.eclipse.wst.jsdt.debug.rhino.ui/src/org/eclipse/wst/jsdt/debug/internal/rhino/ui/launching/RhinoMainTab.java
+++ b/bundles/org.eclipse.wst.jsdt.debug.rhino.ui/src/org/eclipse/wst/jsdt/debug/internal/rhino/ui/launching/RhinoMainTab.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2010, 2012 IBM Corporation and others.
+ * Copyright (c) 2010, 2013 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -271,6 +271,9 @@ public class RhinoMainTab extends AbstractLaunchConfigurationTab {
if(text != null) {
script.setText(text);
}
+ else {
+ script.setText(""); //$NON-NLS-1$
+ }
boolean value = configuration.getAttribute(ILaunchConstants.ATTR_LOG_INTERPRETER_EXCEPTIONS, true);
logging.setSelection(value);
value = configuration.getAttribute(ILaunchConstants.ATTR_STRICT_MODE, false);

Back to the top