X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fws%2Fseqfetcher%2FDbSourceProxyImpl.java;h=0785dfaeae68698428652d8e158cf0ef27870689;hb=a875782b000ff363877677507b7512f8a6c70875;hp=719027f514ab983e7d2b80cbe1a0e81cccd5bade;hpb=ad15cff29620f960119f80176f1fd443da9f6763;p=jalview.git diff --git a/src/jalview/ws/seqfetcher/DbSourceProxyImpl.java b/src/jalview/ws/seqfetcher/DbSourceProxyImpl.java index 719027f..0785dfa 100644 --- a/src/jalview/ws/seqfetcher/DbSourceProxyImpl.java +++ b/src/jalview/ws/seqfetcher/DbSourceProxyImpl.java @@ -20,7 +20,7 @@ */ package jalview.ws.seqfetcher; -import jalview.datamodel.Alignment; +import jalview.datamodel.AlignmentI; import jalview.io.FormatAdapter; import jalview.io.IdentifyFile; @@ -118,9 +118,9 @@ public abstract class DbSourceProxyImpl implements DbSourceProxy * @return null or a valid alignment * @throws Exception */ - protected Alignment parseResult(String result) throws Exception + protected AlignmentI parseResult(String result) throws Exception { - Alignment sequences = null; + AlignmentI sequences = null; String format = new IdentifyFile().Identify(result, "Paste"); if (FormatAdapter.isValidFormat(format)) {