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

Cosmetics

Signed-off-by: Marc Khouzam <marc.khouzam@ericsson.com>
This commit is contained in:
Marc Khouzam 2015-03-23 09:13:51 -04:00
parent 68df11a6b1
commit 51e701d5f4
2 changed files with 4 additions and 4 deletions

View file

@ -28,8 +28,8 @@ public class DsfGroupDebugContextsCommand extends DsfDebugViewLayoutCommand impl
}
@Override
void executeOnDsfThread(IExecutionContextTranslator translator, IExecutionDMContext[] contexts, RequestMonitor requestMonitor) {
translator.group(contexts, requestMonitor);
void executeOnDsfThread(IExecutionContextTranslator translator, IExecutionDMContext[] contexts, RequestMonitor rm) {
translator.group(contexts, rm);
}
@Override

View file

@ -28,8 +28,8 @@ public class DsfUngroupDebugContextsCommand extends DsfDebugViewLayoutCommand im
}
@Override
void executeOnDsfThread(IExecutionContextTranslator translator, IExecutionDMContext[] contexts, RequestMonitor requestMonitor) {
translator.ungroup(contexts, requestMonitor);
void executeOnDsfThread(IExecutionContextTranslator translator, IExecutionDMContext[] contexts, RequestMonitor rm) {
translator.ungroup(contexts, rm);
}
@Override