Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Rennie2007-09-05 20:34:00 +0000
committerMichael Rennie2007-09-05 20:34:00 +0000
commit0d1c42114357c9c48fe4ea85036df51ef709c0af (patch)
tree83fcd091308360258e8628b463fa5cc9a86db858 /org.eclipse.debug.core
parent586a9e5ca76eb98a790b759d661738b993253bec (diff)
downloadeclipse.platform.debug-0d1c42114357c9c48fe4ea85036df51ef709c0af.tar.gz
eclipse.platform.debug-0d1c42114357c9c48fe4ea85036df51ef709c0af.tar.xz
eclipse.platform.debug-0d1c42114357c9c48fe4ea85036df51ef709c0af.zip
Bug 202059 Run dialogue: switching between read-only or removed launch configurations.
Diffstat (limited to 'org.eclipse.debug.core')
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/internal/core/LaunchManager.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/internal/core/LaunchManager.java b/org.eclipse.debug.core/core/org/eclipse/debug/internal/core/LaunchManager.java
index da32ce65f..52bba53d9 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/internal/core/LaunchManager.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/internal/core/LaunchManager.java
@@ -1683,7 +1683,7 @@ public class LaunchManager extends PlatformObject implements ILaunchManager, IRe
List configs = new ArrayList();
ILaunchConfiguration[] candidates = getLaunchConfigurations();
for(int i = 0; i < candidates.length; i++) {
- if(candidates[i].isMigrationCandidate()) {
+ if(!candidates[i].isReadOnly() && candidates[i].isMigrationCandidate()) {
configs.add(candidates[i]);
}
}

Back to the top