mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-31 06:08:31 +02:00
Prevent crash
This commit is contained in:
@@ -21,6 +21,8 @@ package eu.faircode.email;
|
||||
|
||||
import androidx.annotation.Nullable;
|
||||
|
||||
import java.util.Objects;
|
||||
|
||||
public class TupleUnsent {
|
||||
public Integer count;
|
||||
public Integer busy;
|
||||
@@ -29,8 +31,8 @@ public class TupleUnsent {
|
||||
public boolean equals(@Nullable Object obj) {
|
||||
if (obj instanceof TupleUnsent) {
|
||||
TupleUnsent other = (TupleUnsent) obj;
|
||||
return (this.count.equals(other.count) &&
|
||||
this.busy.equals(other.busy));
|
||||
return (Objects.equals(this.count, other.count) &&
|
||||
Objects.equals(this.busy, other.busy));
|
||||
} else
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user