IntelliJ complains that @Override is not allowed when implementing interface methods. Whatever.

git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@5578 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
asivache 2011-04-05 16:57:59 +00:00
parent f4c06bb4ce
commit 77ca4eef31
1 changed files with 0 additions and 3 deletions

View File

@ -259,17 +259,14 @@ public class RefSeqFeature implements Transcript, Feature {
this.name = name;
}
@Override
public String getChr() {
return transcript_interval.getContig();
}
@Override
public int getStart() {
return transcript_interval.getStart();
}
@Override
public int getEnd() {
return transcript_interval.getStop();
}