formatting
[jalview.git] / src / jalview / ws / JobStateSummary.java
index 9953978..10d1be2 100644 (file)
@@ -119,12 +119,13 @@ public class JobStateSummary
         wsInfo.setStatus(j.jobnum, WebserviceInfo.STATE_STOPPED_ERROR);
       }
       // and pass on any sub-job messages to the user
-      StringBuffer output=new StringBuffer();
-      if (OutputHeader!=null) {
-        
+      StringBuffer output = new StringBuffer();
+      if (OutputHeader != null)
+      {
+
         output.append(OutputHeader);
       }
-      if (progheader!=null)
+      if (progheader != null)
       {
         output.append(progheader);
       }
@@ -134,8 +135,9 @@ public class JobStateSummary
         // probably won't be
         // enough memory to handle the results later on anyway.
         // try {
-        String stat =  j.getStatus();
-        if (stat!=null) {
+        String stat = j.getStatus();
+        if (stat != null)
+        {
           output.append(stat);
         }
         // } catch (OutOfMemoryError e)
@@ -145,7 +147,7 @@ public class JobStateSummary
         // "..\n(Out of memory when displaying status)\n");
         // }
       }
-      wsInfo.setProgressText(j.jobnum,output.toString());
+      wsInfo.setProgressText(j.jobnum, output.toString());
     }
     else
     {