This commit is contained in:
JustArchi
2016-12-18 16:10:01 +01:00
parent 7fe65144c1
commit 8d89095670

View File

@@ -766,11 +766,11 @@ namespace ArchiSteamFarm {
}
public override bool Equals(object obj) {
if (ReferenceEquals(null, obj)) {
if (obj == null) {
return false;
}
if (ReferenceEquals(this, obj)) {
if (obj == this) {
return true;
}