[Fix] Don't use locale to compare Certificate

This commit is contained in:
Robert von Burg 2018-10-16 18:39:52 +02:00
parent de8f8d7013
commit ed1df7bc16
1 changed files with 0 additions and 5 deletions

View File

@ -308,11 +308,6 @@ public final class Certificate implements Serializable {
return false;
} else if (!this.authToken.equals(other.authToken))
return false;
if (this.locale == null) {
if (other.locale != null)
return false;
} else if (!this.locale.equals(other.locale))
return false;
if (this.sessionId == null) {
if (other.sessionId != null)
return false;