1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 22:52:11 +02:00

[265048] Forgot to make the new cache private

This commit is contained in:
Marc Khouzam 2009-02-16 19:29:14 +00:00
parent 034c7b969e
commit cef6f529da

View file

@ -162,7 +162,7 @@ public class MIStack extends AbstractDsfService
// would both be sent to GDB because the command cache sees them as different. // 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 // This stackDepthCache allows us to know that if we already ask for a stack depth
// we can potentially re-use the answer. // we can potentially re-use the answer.
StackDepthHashMap<Integer, StackDepthInfo> fStackDepthCache = new StackDepthHashMap<Integer, StackDepthInfo>(); private StackDepthHashMap<Integer, StackDepthInfo> fStackDepthCache = new StackDepthHashMap<Integer, StackDepthInfo>();
private MIStoppedEvent fCachedStoppedEvent; private MIStoppedEvent fCachedStoppedEvent;
private IRunControl fRunControl; private IRunControl fRunControl;