mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-22 06:02:11 +02:00
Remove unnecessary semicolons.
Change-Id: I4ed8830940600065d077857fd813bd38e6a5da86 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
This commit is contained in:
parent
824a7cb4d1
commit
9daf3d00e2
5 changed files with 14 additions and 14 deletions
|
@ -261,7 +261,7 @@ public class GDBProcesses extends MIProcesses implements IGDBProcesses {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
memory.initializeMemoryData(memContext, memoryDataRm);
|
memory.initializeMemoryData(memContext, memoryDataRm);
|
||||||
};
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
// Start tracking breakpoints.
|
// Start tracking breakpoints.
|
||||||
|
@ -273,7 +273,7 @@ public class GDBProcesses extends MIProcesses implements IGDBProcesses {
|
||||||
IContainerDMContext containerDmc = DMContexts.getAncestorOfType(ctx,
|
IContainerDMContext containerDmc = DMContexts.getAncestorOfType(ctx,
|
||||||
IContainerDMContext.class);
|
IContainerDMContext.class);
|
||||||
bpmService.startTrackingBpForProcess(containerDmc, trackBpRm);
|
bpmService.startTrackingBpForProcess(containerDmc, trackBpRm);
|
||||||
};
|
}
|
||||||
} };
|
} };
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -313,7 +313,7 @@ public class VariableVMNode extends AbstractExpressionVMNode
|
||||||
String type = (String) properties.get(PROP_VARIABLE_BASIC_TYPE);
|
String type = (String) properties.get(PROP_VARIABLE_BASIC_TYPE);
|
||||||
return IExpressionDMData.BasicType.pointer.name().equals(type)
|
return IExpressionDMData.BasicType.pointer.name().equals(type)
|
||||||
|| IExpressionDMData.BasicType.function.name().equals(type);
|
|| IExpressionDMData.BasicType.function.name().equals(type);
|
||||||
};
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -331,7 +331,7 @@ public class VariableVMNode extends AbstractExpressionVMNode
|
||||||
String type = (String) properties.get(PROP_VARIABLE_BASIC_TYPE);
|
String type = (String) properties.get(PROP_VARIABLE_BASIC_TYPE);
|
||||||
return IExpressionDMData.BasicType.array.name().equals(type)
|
return IExpressionDMData.BasicType.array.name().equals(type)
|
||||||
|| IExpressionDMData.BasicType.composite.name().equals(type);
|
|| IExpressionDMData.BasicType.composite.name().equals(type);
|
||||||
};
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -348,7 +348,7 @@ public class VariableVMNode extends AbstractExpressionVMNode
|
||||||
public boolean isEnabled(IStatus status, java.util.Map<String, Object> properties) {
|
public boolean isEnabled(IStatus status, java.util.Map<String, Object> properties) {
|
||||||
String type = (String) properties.get(PROP_VARIABLE_BASIC_TYPE);
|
String type = (String) properties.get(PROP_VARIABLE_BASIC_TYPE);
|
||||||
return type != null;
|
return type != null;
|
||||||
};
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
public final static LabelImage PARTITION_LABEL_IMAGE = new LabelImage(CDebugImages.DESC_OBJS_ARRAY_PARTITION) {
|
public final static LabelImage PARTITION_LABEL_IMAGE = new LabelImage(CDebugImages.DESC_OBJS_ARRAY_PARTITION) {
|
||||||
|
@ -360,7 +360,7 @@ public class VariableVMNode extends AbstractExpressionVMNode
|
||||||
public boolean isEnabled(IStatus status, java.util.Map<String, Object> properties) {
|
public boolean isEnabled(IStatus status, java.util.Map<String, Object> properties) {
|
||||||
String type = (String) properties.get(PROP_VARIABLE_BASIC_TYPE);
|
String type = (String) properties.get(PROP_VARIABLE_BASIC_TYPE);
|
||||||
return INDEXED_PARTITION_TYPE.equals(type);
|
return INDEXED_PARTITION_TYPE.equals(type);
|
||||||
};
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
protected IElementLabelProvider createLabelProvider() {
|
protected IElementLabelProvider createLabelProvider() {
|
||||||
|
|
|
@ -60,7 +60,7 @@ public class VariableVMProvider extends AbstractElementVMProvider {
|
||||||
@Override
|
@Override
|
||||||
public void run() {
|
public void run() {
|
||||||
handleEvent(event);
|
handleEvent(event);
|
||||||
};
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -41,21 +41,21 @@ public class BufferedCommandControl implements ICommandControl {
|
||||||
for (ICommandListener processor : fCommandProcessors) {
|
for (ICommandListener processor : fCommandProcessors) {
|
||||||
processor.commandQueued(token);
|
processor.commandQueued(token);
|
||||||
}
|
}
|
||||||
};
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void commandRemoved(ICommandToken token) {
|
public void commandRemoved(ICommandToken token) {
|
||||||
for (ICommandListener processor : fCommandProcessors) {
|
for (ICommandListener processor : fCommandProcessors) {
|
||||||
processor.commandRemoved(token);
|
processor.commandRemoved(token);
|
||||||
}
|
}
|
||||||
};
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void commandSent(final ICommandToken token) {
|
public void commandSent(final ICommandToken token) {
|
||||||
for (ICommandListener processor : fCommandProcessors) {
|
for (ICommandListener processor : fCommandProcessors) {
|
||||||
processor.commandSent(token);
|
processor.commandSent(token);
|
||||||
}
|
}
|
||||||
};
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void commandDone(final ICommandToken token, final ICommandResult result) {
|
public void commandDone(final ICommandToken token, final ICommandResult result) {
|
||||||
|
@ -65,9 +65,9 @@ public class BufferedCommandControl implements ICommandControl {
|
||||||
for (ICommandListener processor : fCommandProcessors) {
|
for (ICommandListener processor : fCommandProcessors) {
|
||||||
processor.commandDone(token, result);
|
processor.commandDone(token, result);
|
||||||
}
|
}
|
||||||
};
|
}
|
||||||
});
|
});
|
||||||
};
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
private IEventListener fEventListener = new IEventListener() {
|
private IEventListener fEventListener = new IEventListener() {
|
||||||
|
@ -79,7 +79,7 @@ public class BufferedCommandControl implements ICommandControl {
|
||||||
for (IEventListener processor : fEventProcessors) {
|
for (IEventListener processor : fEventProcessors) {
|
||||||
processor.eventReceived(output);
|
processor.eventReceived(output);
|
||||||
}
|
}
|
||||||
};
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -120,7 +120,7 @@ public class DsfServicesTracker {
|
||||||
@Override
|
@Override
|
||||||
public void run() {
|
public void run() {
|
||||||
handleUnregisterEvent(event);
|
handleUnregisterEvent(event);
|
||||||
};
|
}
|
||||||
});
|
});
|
||||||
} catch (RejectedExecutionException e) {
|
} catch (RejectedExecutionException e) {
|
||||||
// Same situation as when the session is not active
|
// Same situation as when the session is not active
|
||||||
|
|
Loading…
Add table
Reference in a new issue