Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Wright2005-02-01 21:12:10 +0000
committerDarin Wright2005-02-01 21:12:10 +0000
commit5183bf90e45c56ee9790382da2fe7396e145316a (patch)
treefb99eaaaa2475dc1bddcb8ee6ff06cebd1990e89
parent67e903160b404d9c303b6bc511c9139e92ae9f62 (diff)
downloadeclipse.platform.debug-run_to_line_fix.tar.gz
eclipse.platform.debug-run_to_line_fix.tar.xz
eclipse.platform.debug-run_to_line_fix.zip
[ibuild patch] Bug 83507 - run to line test failurev20050201run_to_line_fix
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/launch/LaunchView.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/launch/LaunchView.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/launch/LaunchView.java
index e3ced452c..3dfb9c3bc 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/launch/LaunchView.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/launch/LaunchView.java
@@ -670,6 +670,7 @@ public class LaunchView extends AbstractDebugEventHandlerView implements ISelect
if (fSourceLookupJob == null) {
fSourceLookupJob = new SourceLookupJob();
}
+ setSourceLookupResult(null);
fSourceLookupJob.schedule();
}

Back to the top