Cleanup: remove extra semicolons
This commit is contained in:
committed by
Laurent Clouet
parent
8c4a19654a
commit
c6dafb3bf6
@@ -36,7 +36,7 @@ import com.sheepit.client.os.OS;
|
|||||||
public class Configuration {
|
public class Configuration {
|
||||||
public enum ComputeType {
|
public enum ComputeType {
|
||||||
CPU_GPU, CPU_ONLY, GPU_ONLY
|
CPU_GPU, CPU_ONLY, GPU_ONLY
|
||||||
}; // accept job for ...
|
} // accept job for ...
|
||||||
|
|
||||||
public File workingDirectory;
|
public File workingDirectory;
|
||||||
public File storageDirectory; // for permanent storage (binary archive)
|
public File storageDirectory; // for permanent storage (binary archive)
|
||||||
|
|||||||
@@ -39,7 +39,7 @@ public class Error {
|
|||||||
OS_NOT_SUPPORTED,
|
OS_NOT_SUPPORTED,
|
||||||
CPU_NOT_SUPPORTED,
|
CPU_NOT_SUPPORTED,
|
||||||
UNKNOWN
|
UNKNOWN
|
||||||
};
|
}
|
||||||
|
|
||||||
public enum ServerCode {
|
public enum ServerCode {
|
||||||
OK(0),
|
OK(0),
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ import java.util.Map;
|
|||||||
public class Log {
|
public class Log {
|
||||||
private static Log instance = null;
|
private static Log instance = null;
|
||||||
|
|
||||||
private Map<Integer, ArrayList<String>> checkpoints = new HashMap<Integer, ArrayList<String>>();;
|
private Map<Integer, ArrayList<String>> checkpoints = new HashMap<Integer, ArrayList<String>>();
|
||||||
private int lastCheckPoint;
|
private int lastCheckPoint;
|
||||||
private DateFormat dateFormat;
|
private DateFormat dateFormat;
|
||||||
|
|
||||||
|
|||||||
@@ -387,7 +387,7 @@ public class Server extends Thread implements HostnameVerifier, X509TrustManager
|
|||||||
|
|
||||||
String update_method = null;
|
String update_method = null;
|
||||||
if (renderer_node.hasAttribute("update_method")) {
|
if (renderer_node.hasAttribute("update_method")) {
|
||||||
update_method = renderer_node.getAttribute("update_method");;
|
update_method = renderer_node.getAttribute("update_method");
|
||||||
}
|
}
|
||||||
|
|
||||||
Job a_job = new Job(
|
Job a_job = new Job(
|
||||||
|
|||||||
@@ -37,7 +37,7 @@ import com.sheepit.client.standalone.swing.activity.Working;
|
|||||||
public class GuiSwing extends JFrame implements Gui {
|
public class GuiSwing extends JFrame implements Gui {
|
||||||
public enum ActivityType {
|
public enum ActivityType {
|
||||||
WORKING, SETTINGS
|
WORKING, SETTINGS
|
||||||
};
|
}
|
||||||
|
|
||||||
private JPanel panel;
|
private JPanel panel;
|
||||||
private Working activityWorking;
|
private Working activityWorking;
|
||||||
|
|||||||
Reference in New Issue
Block a user