From f5dc20e83663d04522632c6c0f2fce042558073a Mon Sep 17 00:00:00 2001 From: BobHanson Date: Fri, 20 Mar 2020 00:38:37 -0500 Subject: [PATCH] automated code fix noting unnecessary use of new String(""). --- src/jalview/io/ModellerDescription.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/jalview/io/ModellerDescription.java b/src/jalview/io/ModellerDescription.java index 4a12387..20bf736 100755 --- a/src/jalview/io/ModellerDescription.java +++ b/src/jalview/io/ModellerDescription.java @@ -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()) -- 1.7.10.2