X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fws%2Frest%2Fparams%2FAnnotationFile.java;fp=src%2Fjalview%2Fws%2Frest%2Fparams%2FAnnotationFile.java;h=b610fca46fb04694abe1b8dca685c36d2a73a2b4;hb=be762d8d9c71a7aa3121e845c45911c7192b7827;hp=5962a9145bd8e55ca299bf3197cf4e6b4c508e8f;hpb=d1bb7a31fc091606aedbc255a5766ac79e36fa91;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; } }