JAL-1645 Version-Rel Version 2.9 Year-Rel 2015 Licensing glob
[jalview.git] / src / jalview / ws / params / simple / BooleanOption.java
index a58863a..484a46d 100644 (file)
@@ -1,6 +1,6 @@
 /*
- * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
- * Copyright (C) $$Year-Rel$$ The Jalview Authors
+ * Jalview - A Sequence Alignment Editor and Viewer (Version 2.9)
+ * Copyright (C) 2015 The Jalview Authors
  * 
  * This file is part of Jalview.
  * 
  */
 package jalview.ws.params.simple;
 
+import jalview.ws.params.OptionI;
+
 import java.net.URL;
 import java.util.Arrays;
 
-import jalview.ws.params.OptionI;
-
 public class BooleanOption extends Option implements OptionI
 {
 
@@ -33,8 +33,7 @@ public class BooleanOption extends Option implements OptionI
   {
 
     super(name, descr, required, (defVal ? name : ""), (val ? name : ""),
-            Arrays.asList(new String[]
-            { name }), link);
+            Arrays.asList(new String[] { name }), link);
   }
 
 }