JAL-3878 Code reformatting.
[jalview.git] / src / jalview / ws2 / WSJobStatus.java
index 73e5fd8..0a3872d 100755 (executable)
@@ -1,6 +1,5 @@
 package jalview.ws2;
 
-
 public enum WSJobStatus
 {
   /** Job has invalid parameters and cannot be started. */
@@ -14,8 +13,7 @@ public enum WSJobStatus
   /** Job is running. */
   RUNNING,
   /** Job has finished with no errors. */
-  FINISHED,
-  BROKEN,
+  FINISHED, BROKEN,
   /** Job has finished with errors. */
   FAILED,
   /** Job cannot be processed or completed due to server error. */
@@ -25,7 +23,6 @@ public enum WSJobStatus
   /** Status cannot be determined. */
   UNKNOWN;
 
-
   public boolean isSubmitted()
   {
     switch (this)