diff --git a/src/main/java/org/terasology/launcher/game/RunGameTask.java b/src/main/java/org/terasology/launcher/game/RunGameTask.java index c0679e40b..4e1fca1c2 100644 --- a/src/main/java/org/terasology/launcher/game/RunGameTask.java +++ b/src/main/java/org/terasology/launcher/game/RunGameTask.java @@ -58,16 +58,6 @@ public RunGameTask(final Package pkg, final Path gamePath, final BaseLauncherSet launcherSettings.getUserGameParameterList(), launcherSettings.getLogLevel()); } - /** - * Invoked when the Task is executed, the call method must be overridden and - * implemented by subclasses. The call method actually performs the - * background thread logic. Only the updateProgress, updateMessage, updateValue and - * updateTitle methods of Task may be called from code within this method. - * Any other interaction with the Task from the background thread will result - * in runtime exceptions. - * - * @return The result of the background work, if any. - */ @Override protected Boolean call() throws GameStartError, GameExitError, InterruptedException { verifyNotNull(this.starter);