From: Mateusz Warowny Date: Wed, 2 Mar 2022 17:30:15 +0000 (+0100) Subject: JAL-3878 Fix typo in method name (getAlignemnt) X-Git-Url: http://source.jalview.org/gitweb/?a=commitdiff_plain;h=554db93c34099ab1dc53e345cfdf4c838549d65f;p=jalview.git JAL-3878 Fix typo in method name (getAlignemnt) --- diff --git a/src/jalview/ws2/actions/alignment/AlignmentProviderI.java b/src/jalview/ws2/actions/alignment/AlignmentProviderI.java index 4ed5c55..58bf8fc 100644 --- a/src/jalview/ws2/actions/alignment/AlignmentProviderI.java +++ b/src/jalview/ws2/actions/alignment/AlignmentProviderI.java @@ -28,5 +28,5 @@ public interface AlignmentProviderI * @throws IOException * server communication error */ - public AlignmentI getAlignemnt(WebServiceJobHandle job) throws IOException; + public AlignmentI getAlignment(WebServiceJobHandle job) throws IOException; }