automated code fix
authorBobHanson <hansonr@stolaf.edu>
Fri, 20 Mar 2020 05:38:37 +0000 (00:38 -0500)
committerBobHanson <hansonr@stolaf.edu>
Fri, 20 Mar 2020 05:38:37 +0000 (00:38 -0500)
noting unnecessary use of new String("").

src/jalview/io/ModellerDescription.java

index 4a12387..20bf736 100755 (executable)
@@ -94,7 +94,7 @@ public class ModellerDescription
       val = new Integer(v);
       field = val.toString();
     }
-  };
+  }
 
   private static Regex VALIDATION_REGEX;
 
@@ -179,7 +179,6 @@ public class ModellerDescription
                   // field '" + field + "'");
                   type = -1; /* invalid field! - throw the FieldSet away */
                 }
-                ;
               }
               fields.put(Fields[i++], field);
               if (st.hasMoreTokens())