mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-09 17:25:38 +02:00
Cosmetics
Signed-off-by: Marc Khouzam <marc.khouzam@ericsson.com>
This commit is contained in:
parent
2710dbd206
commit
68df11a6b1
2 changed files with 11 additions and 11 deletions
|
@ -1,5 +1,5 @@
|
|||
/*******************************************************************************
|
||||
* Copyright (c) 2011 Texas Instruments, Inc. and others.
|
||||
* Copyright (c) 2011, 2015 Texas Instruments, Inc. and others.
|
||||
* All rights reserved. This program and the accompanying materials
|
||||
* are made available under the terms of the Eclipse Public License v1.0
|
||||
* which accompanies this distribution, and is available at
|
||||
|
@ -21,19 +21,19 @@ import org.eclipse.debug.core.commands.IDebugCommandHandler;
|
|||
* @since 2.2
|
||||
*/
|
||||
@SuppressWarnings("restriction")
|
||||
public class DsfGroupDebugContextsCommand extends DsfDebugViewLayoutCommand implements IDebugCommandHandler{
|
||||
public class DsfGroupDebugContextsCommand extends DsfDebugViewLayoutCommand implements IDebugCommandHandler {
|
||||
|
||||
public DsfGroupDebugContextsCommand(DsfSession session) {
|
||||
super(session);
|
||||
}
|
||||
|
||||
@Override
|
||||
void executeOnDsfThread( IExecutionContextTranslator translator, IExecutionDMContext[] contexts, RequestMonitor requestMonitor) {
|
||||
void executeOnDsfThread(IExecutionContextTranslator translator, IExecutionDMContext[] contexts, RequestMonitor requestMonitor) {
|
||||
translator.group(contexts, requestMonitor);
|
||||
}
|
||||
|
||||
@Override
|
||||
void canExecuteOnDsfThread( IExecutionContextTranslator translator, IExecutionDMContext[] contexts, DataRequestMonitor<Boolean> rm) {
|
||||
void canExecuteOnDsfThread(IExecutionContextTranslator translator, IExecutionDMContext[] contexts, DataRequestMonitor<Boolean> rm) {
|
||||
translator.canGroup(contexts, rm);
|
||||
}
|
||||
|
||||
public DsfGroupDebugContextsCommand(DsfSession session) {
|
||||
super( session);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*******************************************************************************
|
||||
* Copyright (c) 2011 Texas Instruments, Inc. and others.
|
||||
* Copyright (c) 2011, 2015 Texas Instruments, Inc. and others.
|
||||
* All rights reserved. This program and the accompanying materials
|
||||
* are made available under the terms of the Eclipse Public License v1.0
|
||||
* which accompanies this distribution, and is available at
|
||||
|
@ -21,10 +21,10 @@ import org.eclipse.debug.core.commands.IDebugCommandHandler;
|
|||
* @since 2.2
|
||||
*/
|
||||
@SuppressWarnings("restriction")
|
||||
public class DsfUngroupDebugContextsCommand extends DsfDebugViewLayoutCommand implements IDebugCommandHandler{
|
||||
public class DsfUngroupDebugContextsCommand extends DsfDebugViewLayoutCommand implements IDebugCommandHandler {
|
||||
|
||||
public DsfUngroupDebugContextsCommand(DsfSession session) {
|
||||
super( session);
|
||||
super(session);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Add table
Reference in a new issue