464465466467468469470471472473474
} }; try { command.execute(new NullProgressMonitor(), null); } catch (ExecutionException e) { throw new RuntimeException(e.getMessage(), e); } }
187188189190191192193194195196197
return CommandResult.newOKCommandResult(); } }; try { IStatus result = command.execute(new NullProgressMonitor(), null); if (!result.isOK()) { logStatus(result); } } catch (ExecutionException e) { throw new RuntimeException(e);