LINE_NUMBER update method does not work, since blender 2.70 the remaining time is better

This commit is contained in:
Laurent Clouet
2015-04-23 21:56:57 +01:00
parent bc63388ef2
commit 4994b9a209
2 changed files with 3 additions and 20 deletions

View File

@@ -35,7 +35,6 @@ public class Job {
private long memoryUsed; // in kB
private String rendererCommand;
private String script;
private int maxOutputNbLines;
private boolean useGPU;
private String extras;
private String updateRenderingStatusMethod;
@@ -63,7 +62,6 @@ public class Job {
renderDuration = 0;
memoryUsed = 0;
script = script_;
maxOutputNbLines = 0;
updateRenderingStatusMethod = update_method_;
process = null;
askForRendererKill = false;
@@ -106,10 +104,6 @@ public class Job {
return updateRenderingStatusMethod;
}
public int getMaxOutputNbLines() {
return maxOutputNbLines;
}
public void setAskForRendererKill(boolean val) {
askForRendererKill = val;
}
@@ -142,10 +136,6 @@ public class Job {
renderDuration = val;
}
public void setMaxOutputNbLines(int val) {
maxOutputNbLines = val;
}
public String getRenderCommand() {
return rendererCommand;
}