Fixed not aborting launching when not having successfully downloaded all libraries
This commit is contained in:
@@ -33,7 +33,9 @@ public class ParallelTask extends Task {
|
||||
}
|
||||
|
||||
@Override
|
||||
public void executeTask(boolean areDependTasksSucceeded) {
|
||||
public void executeTask(boolean areDependTasksSucceeded) throws Exception {
|
||||
if (!areDependTasksSucceeded)
|
||||
throw new Exception("Tasks failed");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user