X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fws%2Frest%2Fparams%2FSeqIdVector.java;h=0b19629328ae564c3be7abc30e5b924ad880bf70;hb=3d0101179759ef157b088ea135423cd909512d9f;hp=a3f3f40d65a6dd1febafe8c072780fbbfcbf2db0;hpb=ad15cff29620f960119f80176f1fd443da9f6763;p=jalview.git diff --git a/src/jalview/ws/rest/params/SeqIdVector.java b/src/jalview/ws/rest/params/SeqIdVector.java index a3f3f40..0b19629 100644 --- a/src/jalview/ws/rest/params/SeqIdVector.java +++ b/src/jalview/ws/rest/params/SeqIdVector.java @@ -46,8 +46,7 @@ public class SeqIdVector extends InputType { public SeqIdVector() { - super(new Class[] - { AlignmentI.class }); + super(new Class[] { AlignmentI.class }); } /** @@ -110,8 +109,8 @@ public class SeqIdVector extends InputType return true; } catch (Exception x) { - warnings.append("Invalid molecule type '" + val - + "'. Must be one of ("); + warnings.append( + "Invalid molecule type '" + val + "'. Must be one of ("); for (molType v : molType.values()) { warnings.append(" " + v); @@ -130,7 +129,8 @@ public class SeqIdVector extends InputType "Separator character between elements of vector", true, ",", sep, Arrays.asList(new String[] { " ", ",", ";", "\t", "|" }), null)); - lst.add(createMolTypeOption("type", "Sequence type", false, type, null)); + lst.add(createMolTypeOption("type", "Sequence type", false, type, + null)); return lst; } }