in data/src/main/java/com/microsoft/azure/kusto/data/auth/CloudInfo.java [181:196]
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CloudInfo cloudInfo = (CloudInfo) o;
return loginMfaRequired == cloudInfo.loginMfaRequired
&& Objects.equals(loginEndpoint, cloudInfo.loginEndpoint)
&& Objects.equals(kustoClientAppId, cloudInfo.kustoClientAppId)
&& Objects.equals(kustoClientRedirectUri, cloudInfo.kustoClientRedirectUri)
&& Objects.equals(kustoServiceResourceId, cloudInfo.kustoServiceResourceId)
&& Objects.equals(firstPartyAuthorityUrl, cloudInfo.firstPartyAuthorityUrl);
}