Ignore:
Timestamp:
Sep 4, 2012, 6:02:59 PM (12 years ago)
Author:
casties
Branch:
default
Message:

CLOSED - # 252: Tags for Annotations
https://it-dev.mpiwg-berlin.mpg.de/tracs/mpdl-project-software/ticket/252

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/main/java/de/mpiwg/itgroup/annotations/Actor.java

    r15 r16  
    3232    public boolean isEquivalentWith(Person person, AnnotationStore store) {
    3333        if (person == null) return false;
    34         if (person.equals(getIdString())) {
    35             return true;
    36         }
     34        if (person.equals(this)) return true;
     35        if (person.getIdString().equals(this.getIdString())) return true;
    3736        if (isGroup() && store != null) {
    3837            // check if person in group
Note: See TracChangeset for help on using the changeset viewer.