no message
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
package GlobalData.Tasks;
|
||||
import Common.Constants.Constants;
|
||||
import Common.Constants;
|
||||
import Common.Database.iDBObject;
|
||||
import Common.Global;
|
||||
import Common.Utils.Utils;
|
||||
@@ -52,13 +52,13 @@ public abstract class Task extends iDBObject {
|
||||
return Paths.get(getHome().getAbsolutePath(), String.valueOf(id)).toFile();
|
||||
}
|
||||
public File getOutputFile() {
|
||||
return Paths.get(getLocalWorkspace().getAbsolutePath(), db_project_info.out_file).toFile();
|
||||
return Paths.get(getLocalWorkspace().getAbsolutePath(), Constants.out_file).toFile();
|
||||
}
|
||||
public File getErrorsFile() {
|
||||
return Paths.get(getLocalWorkspace().getAbsolutePath(), db_project_info.err_file).toFile();
|
||||
return Paths.get(getLocalWorkspace().getAbsolutePath(), Constants.err_file).toFile();
|
||||
}
|
||||
public File getTimeFile() {
|
||||
return Paths.get(getLocalWorkspace().getAbsolutePath(), db_project_info.time_file).toFile();
|
||||
return Paths.get(getLocalWorkspace().getAbsolutePath(), Constants.time_file).toFile();
|
||||
}
|
||||
public abstract String getFullCommand();
|
||||
public Date getEndDate() {
|
||||
|
||||
Reference in New Issue
Block a user