Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Rennie2013-05-10 18:28:35 +0000
committerCurtis Windatt2013-05-10 18:28:35 +0000
commitcf8479dbf7b6acbd74f2f34b522cedd95d7cedb1 (patch)
tree9c966593902d5f582b6b8506d29e85e71263b8b8 /org.eclipse.debug.core
parent59608a8f5df74c5acd47af45f7e8c5fe14b42358 (diff)
downloadeclipse.platform.debug-cf8479dbf7b6acbd74f2f34b522cedd95d7cedb1.tar.gz
eclipse.platform.debug-cf8479dbf7b6acbd74f2f34b522cedd95d7cedb1.tar.xz
eclipse.platform.debug-cf8479dbf7b6acbd74f2f34b522cedd95d7cedb1.zip
Bug 395441 - An IAE exception from WorkspaceRoot breaks launch historyI20130512-2000I20130511-1500I20130510-2000
toolbar menu
Diffstat (limited to 'org.eclipse.debug.core')
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/internal/core/LaunchConfiguration.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/internal/core/LaunchConfiguration.java b/org.eclipse.debug.core/core/org/eclipse/debug/internal/core/LaunchConfiguration.java
index 9b6f73d1a..ff886fa04 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/internal/core/LaunchConfiguration.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/internal/core/LaunchConfiguration.java
@@ -530,6 +530,7 @@ public class LaunchConfiguration extends PlatformObject implements ILaunchConfig
res = root.getFile(path);
break;
case IResource.PROJECT:
+ pathStr = path.makeRelative().toPortableString();
if(Path.ROOT.isValidSegment(pathStr)) {
res = root.getProject(pathStr);
}

Back to the top