JAL-1551 tidy
authorJim Procter <jprocter@issues.jalview.org>
Mon, 20 Jun 2016 12:48:45 +0000 (13:48 +0100)
committerJim Procter <jprocter@issues.jalview.org>
Mon, 20 Jun 2016 12:48:45 +0000 (13:48 +0100)
src/jalview/datamodel/SequenceGroup.java

index 4cbc2a9..d403d6e 100755 (executable)
@@ -894,6 +894,7 @@ public class SequenceGroup implements AnnotatedCollectionI
   /**
    * @return the representative sequence for this group
    */
+  @Override
   public SequenceI getSeqrep()
   {
     return seqrep;
@@ -906,6 +907,7 @@ public class SequenceGroup implements AnnotatedCollectionI
    * @param seqrep
    *          the seqrep to set (null means no sequence representative)
    */
+  @Override
   public void setSeqrep(SequenceI seqrep)
   {
     this.seqrep = seqrep;
@@ -915,6 +917,7 @@ public class SequenceGroup implements AnnotatedCollectionI
    * 
    * @return true if group has a sequence representative
    */
+  @Override
   public boolean hasSeqrep()
   {
     return seqrep != null;