X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fjalview%2Fws%2Frest%2Fparams%2FAnnotationFile.java;h=b610fca46fb04694abe1b8dca685c36d2a73a2b4;hb=f4766a7bbcfae845fc95923b01fa14ff83d589ff;hp=5962a9145bd8e55ca299bf3197cf4e6b4c508e8f;hpb=163ed5b997bbda48e4cdd950e87a8fe01baae7fb;p=jalview.git diff --git a/src/jalview/ws/rest/params/AnnotationFile.java b/src/jalview/ws/rest/params/AnnotationFile.java index 5962a91..b610fca 100644 --- a/src/jalview/ws/rest/params/AnnotationFile.java +++ b/src/jalview/ws/rest/params/AnnotationFile.java @@ -71,9 +71,8 @@ public class AnnotationFile extends InputType AlignmentI al = rj.getAlignmentForInput(token, molType.MIX); if (format.equals(JVANNOT)) { - return new StringBody( - new jalview.io.AnnotationFile() - .printAnnotationsForAlignment(al)); + return new StringBody(new jalview.io.AnnotationFile() + .printAnnotationsForAlignment(al)); } else { @@ -83,9 +82,8 @@ public class AnnotationFile extends InputType "Unrecognised format for exporting Annotation (" + format + ")"); } - return new StringBody( - new jalview.io.AnnotationFile().printCSVAnnotations(al - .getAlignmentAnnotation())); + return new StringBody(new jalview.io.AnnotationFile() + .printCSVAnnotations(al.getAlignmentAnnotation())); } } @@ -135,9 +133,9 @@ public class AnnotationFile extends InputType { // TODO - consider disregarding base options here. List lst = getBaseOptions(); - lst.add(new Option("format", "Alignment annotation upload format", - true, JVANNOT, format, Arrays.asList(new String[] { JVANNOT, - CSVANNOT }), null)); + lst.add(new Option("format", "Alignment annotation upload format", true, + JVANNOT, format, Arrays.asList(new String[] + { JVANNOT, CSVANNOT }), null)); return lst; } }