From cef6f529dae9a743320436948654510cbd520cae Mon Sep 17 00:00:00 2001 From: Marc Khouzam Date: Mon, 16 Feb 2009 19:29:14 +0000 Subject: [PATCH] [265048] Forgot to make the new cache private --- .../src/org/eclipse/cdt/dsf/mi/service/MIStack.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dsf-gdb/org.eclipse.cdt.dsf.gdb/src/org/eclipse/cdt/dsf/mi/service/MIStack.java b/dsf-gdb/org.eclipse.cdt.dsf.gdb/src/org/eclipse/cdt/dsf/mi/service/MIStack.java index 3d94f6c1fa6..d700b8aa933 100644 --- a/dsf-gdb/org.eclipse.cdt.dsf.gdb/src/org/eclipse/cdt/dsf/mi/service/MIStack.java +++ b/dsf-gdb/org.eclipse.cdt.dsf.gdb/src/org/eclipse/cdt/dsf/mi/service/MIStack.java @@ -162,7 +162,7 @@ public class MIStack extends AbstractDsfService // would both be sent to GDB because the command cache sees them as different. // This stackDepthCache allows us to know that if we already ask for a stack depth // we can potentially re-use the answer. - StackDepthHashMap fStackDepthCache = new StackDepthHashMap(); + private StackDepthHashMap fStackDepthCache = new StackDepthHashMap(); private MIStoppedEvent fCachedStoppedEvent; private IRunControl fRunControl;