JAL-2110 abstract methods should never reference their implementing classes
authorJim Procter <jprocter@issues.jalview.org>
Tue, 31 May 2016 17:57:46 +0000 (18:57 +0100)
committerJim Procter <jprocter@issues.jalview.org>
Tue, 31 May 2016 17:57:46 +0000 (18:57 +0100)
src/jalview/api/DBRefEntryI.java

index 49858cb..01b1d2c 100644 (file)
@@ -1,6 +1,5 @@
 package jalview.api;
 
-import jalview.datamodel.DBRefEntry;
 import jalview.datamodel.Mapping;
 
 //JBPComment: this is a datamodel API - so it should be in datamodel (it's a peer of SequenceI)
@@ -90,5 +89,5 @@ public interface DBRefEntryI
    * @param otherEntry
    * @return
    */
-  public boolean updateFrom(DBRefEntry otherEntry);
+  public boolean updateFrom(DBRefEntryI otherEntry);
 }