1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-30 21:55:31 +02:00

new method createMIStackInfoDepth().

This commit is contained in:
Alain Magloire 2002-11-14 21:04:08 +00:00
parent 2638b185d2
commit 9ed10afe53

View file

@ -197,6 +197,10 @@ public class CommandFactory {
return new MIGDBShowSolibSearchPath();
}
public MIStackInfoDepth createMIStackInfoDepth() {
return new MIStackInfoDepth();
}
public MIStackInfoDepth createMIStackInfoDepth(int depth) {
return new MIStackInfoDepth(depth);
}