public boolean equals()

in src/main/java/com/ericsson/gerrit/plugins/eventslog/sql/SQLEntry.java [51:59]


  public boolean equals(Object o) {
    if (o == null) {
      return false;
    }
    if (this.getClass() != o.getClass()) {
      return false;
    }
    return this.id == ((SQLEntry) o).id;
  }