blob: 915f649b4609af76e13a10f63141e130a3e43923 [file] [log] [blame]
package sample.splash.app;
import org.eclipse.e4.core.di.annotations.Execute;
import org.eclipse.fx.ui.services.restart.RestartService;
public class RestartHandler {
@Execute
public void restart(RestartService service) {
service.restart(false);
}
}