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:
parent
034c7b969e
commit
cef6f529da
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||||
|
|
Loading…
Add table
Reference in a new issue