Cleanup: indentation
This commit is contained in:
@@ -142,8 +142,8 @@ public class Client {
|
|||||||
this.renderingJob = null;
|
this.renderingJob = null;
|
||||||
|
|
||||||
while (this.running == true) {
|
while (this.running == true) {
|
||||||
synchronized(this) {
|
synchronized (this) {
|
||||||
while(this.suspended) {
|
while (this.suspended) {
|
||||||
wait();
|
wait();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -759,7 +759,7 @@ public class Client {
|
|||||||
|
|
||||||
if (md5_local.equals(ajob.getRenderMd5()) == false) {
|
if (md5_local.equals(ajob.getRenderMd5()) == false) {
|
||||||
this.log.error("Client::downloadExecutable mismatch on md5 local: '" + md5_local + "' server: '" + ajob.getRenderMd5() + "'");
|
this.log.error("Client::downloadExecutable mismatch on md5 local: '" + md5_local + "' server: '" + ajob.getRenderMd5() + "'");
|
||||||
// md5 of the downloaded file doesn't match the expected hash
|
// md5 of the downloaded file doesn't match the expected hash
|
||||||
return -10;
|
return -10;
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
|
|||||||
@@ -111,12 +111,12 @@ public class Job {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void setAskForRendererKill(boolean val) {
|
public void setAskForRendererKill(boolean val) {
|
||||||
askForRendererKill = val;
|
askForRendererKill = val;
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean getAskForRendererKill() {
|
public boolean getAskForRendererKill() {
|
||||||
return askForRendererKill;
|
return askForRendererKill;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setProcess(Process val) {
|
public void setProcess(Process val) {
|
||||||
process = val;
|
process = val;
|
||||||
|
|||||||
@@ -58,7 +58,7 @@ public class Working implements Activity {
|
|||||||
|
|
||||||
statusContent.setVerticalAlignment(JLabel.TOP);
|
statusContent.setVerticalAlignment(JLabel.TOP);
|
||||||
statusContent.setVerticalTextPosition(JLabel.TOP);
|
statusContent.setVerticalTextPosition(JLabel.TOP);
|
||||||
statusContent.setBounds(start_label_right, n, 600 -20 - start_label_right, size_height_label + sep - 3);
|
statusContent.setBounds(start_label_right, n, 600 - 20 - start_label_right, size_height_label + sep - 3);
|
||||||
parent.getContentPane().add(statusContent);
|
parent.getContentPane().add(statusContent);
|
||||||
|
|
||||||
n += sep;
|
n += sep;
|
||||||
|
|||||||
Reference in New Issue
Block a user