templates/todo/api/java/src/main/java/com/microsoft/azure/simpletodo/model/TodoList.java [68:78]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public boolean equals(final Object o) {
        if (o == this) return true;
        if (!(o instanceof TodoList)) return false;
        final TodoList other = (TodoList) o;
        if (!((Object) this instanceof TodoList)) return false;
        final Object this$id = this.getId();
        final Object other$id = other.getId();
        // lists are equal if they have the same id
        if (this$id == null ? other$id != null : !this$id.equals(other$id)) return false;
        return true;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



templates/todo/api/java-postgresql/src/main/java/com/microsoft/azure/simpletodo/model/TodoList.java [77:87]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public boolean equals(final Object o) {
        if (o == this) return true;
        if (!(o instanceof TodoList)) return false;
        final TodoList other = (TodoList) o;
        if (!((Object) this instanceof TodoList)) return false;
        final Object this$id = this.getId();
        final Object other$id = other.getId();
        // lists are equal if they have the same id
        if (this$id == null ? other$id != null : !this$id.equals(other$id)) return false;
        return true;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



