in src/main/java/org/jetbrains/teamcity/githubauth/GitHubTokenResponse.java [17:26]
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
GitHubTokenResponse that = (GitHubTokenResponse) o;
return Objects.equals(access_token, that.access_token) &&
Objects.equals(scope, that.scope) &&
Objects.equals(error, that.error) &&
Objects.equals(error_description, that.error_description) &&
Objects.equals(error_uri, that.error_uri);
}