JAL-1925 update source version in license
[jalview.git] / src / jalview / ws / jws2 / ParameterUtils.java
index 8437929..c5df94b 100644 (file)
@@ -1,6 +1,6 @@
 /*
- * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.2b1)
- * Copyright (C) 2014 The Jalview Authors
+ * Jalview - A Sequence Alignment Editor and Viewer (Version 2.9.0b2)
+ * Copyright (C) 2015 The Jalview Authors
  * 
  * This file is part of Jalview.
  * 
@@ -22,12 +22,15 @@ package jalview.ws.jws2;
 
 import jalview.util.MessageManager;
 
-import java.net.MalformedURLException;
 import java.util.ArrayList;
 import java.util.HashSet;
 import java.util.List;
 
-import compbio.metadata.*;
+import compbio.metadata.Option;
+import compbio.metadata.Parameter;
+import compbio.metadata.RunnerConfig;
+import compbio.metadata.ValueConstrain;
+import compbio.metadata.WrongParameterException;
 
 public class ParameterUtils
 {
@@ -146,8 +149,7 @@ public class ParameterUtils
       }
       else
       {
-        copy.addOptionNames(names.toArray(new String[]
-        {}));
+        copy.addOptionNames(names.toArray(new String[] {}));
       }
     }
     try
@@ -183,7 +185,9 @@ public class ParameterUtils
     } catch (Exception e)
     {
       e.printStackTrace();
-      throw new Error(MessageManager.getString("error.implementation_error_couldnt_copy_value_constraint"));
+      throw new Error(
+              MessageManager
+                      .getString("error.implementation_error_couldnt_copy_value_constraint"));
     }
   }
 
@@ -198,8 +202,7 @@ public class ParameterUtils
     List<String> pv = parameter.getPossibleValues();
     if (pv != null)
     {
-      copy.addPossibleValues(pv.toArray(new String[]
-      {}));
+      copy.addPossibleValues(pv.toArray(new String[] {}));
     }
     setOptionFrom(copy, parameter);
     return copy;