in sources/src/main/java/com/google/solutions/jitaccess/auth/GroupId.java [83:94]
public boolean equals(@Nullable Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
GroupId groupId = (GroupId) o;
return this.email.equals(groupId.email);
}