Suppose that code :
Command provisionHostCommand = new Command() {
@Override
public void execute() {
final List<Host> hosts = new ArrayList<Host>(display.getSelectionModel().getSelectedSet());
eventBus.fireEvent(new ProvisioningHostEvent(hosts));
}
};
Take a look about the indention. There's 4 spaces for the Command anonymous class. I have my c-basic-offset set to 2. How can I reduce the indentation space in a anonymous class ?
Thanks.