Updated dependencies

This commit is contained in:
Glenn Renfro
2019-08-23 10:28:38 -04:00
parent 8ba0437078
commit 68584bac1f
12 changed files with 30 additions and 15 deletions

View File

@@ -81,6 +81,21 @@ public class TaskConfiguration {
throw new UnsupportedOperationException("environmentInfo is not supported");
}
@Override
public int getMaximumConcurrentTasks() {
return 0;
}
@Override
public int getRunningTaskExecutionCount() {
return 0;
}
@Override
public String getLog(String id) {
return null;
}
public List<String> getCommandlineArguments() {
return commandlineArguments;
}