public boolean equals()

in library/src/main/java/com/theguardian/bridget/thrift/MaybeEpic.java [187:203]


  public boolean equals(MaybeEpic that) {
    if (that == null)
      return false;
    if (this == that)
      return true;

    boolean this_present_epic = true && this.isSetEpic();
    boolean that_present_epic = true && that.isSetEpic();
    if (this_present_epic || that_present_epic) {
      if (!(this_present_epic && that_present_epic))
        return false;
      if (!this.epic.equals(that.epic))
        return false;
    }

    return true;
  }