JAL-1645 source formatting and organise imports
[jalview.git] / src / jalview / ws / uimodel / PDBRestResponse.java
index b82b997..bbd5e84 100644 (file)
@@ -76,7 +76,6 @@ public class PDBRestResponse
     this.searchSummary = searchSummary;
   }
 
-
   /**
    * Convenience method to obtain a Table model for a given summary List based
    * on the request parameters
@@ -103,7 +102,7 @@ public class PDBRestResponse
     if (request.getAssociatedSequence() != null)
     {
       tableModel.addColumn("Ref Sequence"); // Create sequence column header if
-                                        // exists in the request
+      // exists in the request
     }
     for (PDBDocField field : request.getWantedFields())
     {
@@ -149,8 +148,7 @@ public class PDBRestResponse
       for (PDBDocField field : diplayFields)
       {
         String fieldData = (pdbJsonDoc.get(field.getCode()) == null) ? ""
-                : pdbJsonDoc
-                .get(field.getCode()).toString();
+                : pdbJsonDoc.get(field.getCode()).toString();
         if (field.equals(PDBDocField.PDB_ID))
         {
           this.pdbId = fieldData;
@@ -223,4 +221,3 @@ public class PDBRestResponse
   }
 
 }
-