JAL-1645 source formatting and organise imports
[jalview.git] / src / jalview / ws / params / simple / BooleanOption.java
index b69da25..eea8f9f 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-Rel$$)
+ * Copyright (C) $$Year-Rel$$ 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);
   }
 
 }