Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSarika Sinha2016-05-09 06:44:40 +0000
committerSarika Sinha2016-06-10 05:21:21 +0000
commitbe36a1b98c43410d006d7dae46a10d9d49b2f308 (patch)
tree3be87e16e9a27cd814e389e91bc33bbf2bd730fb
parent56de47bd932a102b41019b1cc1d2912c800feffc (diff)
downloadeclipse.platform.debug-be36a1b98c43410d006d7dae46a10d9d49b2f308.tar.gz
eclipse.platform.debug-be36a1b98c43410d006d7dae46a10d9d49b2f308.tar.xz
eclipse.platform.debug-be36a1b98c43410d006d7dae46a10d9d49b2f308.zip
Bug 468902 - SourceLookupFacility.dispose() is incomplete
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/sourcelookup/SourceLookupFacility.java9
1 files changed, 7 insertions, 2 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/sourcelookup/SourceLookupFacility.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/sourcelookup/SourceLookupFacility.java
index d69938957..6c3f986bc 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/sourcelookup/SourceLookupFacility.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/sourcelookup/SourceLookupFacility.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2014 IBM Corporation and others.
+ * Copyright (c) 2000, 2016 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
@@ -42,7 +42,6 @@ import org.eclipse.debug.internal.ui.views.launch.Decoration;
import org.eclipse.debug.internal.ui.views.launch.DecorationManager;
import org.eclipse.debug.internal.ui.views.launch.SourceNotFoundEditorInput;
import org.eclipse.debug.internal.ui.views.launch.StandardDecoration;
-
import org.eclipse.debug.ui.DebugUITools;
import org.eclipse.debug.ui.IDebugEditorPresentation;
import org.eclipse.debug.ui.IDebugModelPresentation;
@@ -137,6 +136,12 @@ public class SourceLookupFacility implements IPageListener, IPartListener2, IPro
}
fEntryStack.add(0, key);
}
+
+ @Override
+ public void clear() {
+ fEntryStack.clear();
+ super.clear();
+ }
}
/**

Back to the top