mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-01 22:56:33 +02:00
Auto prolong oneshot
This commit is contained in:
@@ -19,7 +19,21 @@ package eu.faircode.email;
|
||||
Copyright 2018-2019 by Marcel Bokhorst (M66B)
|
||||
*/
|
||||
|
||||
import androidx.annotation.Nullable;
|
||||
|
||||
import java.util.Objects;
|
||||
|
||||
public class TupleAccountStats {
|
||||
public Integer accounts = 0;
|
||||
public Integer operations = 0;
|
||||
|
||||
@Override
|
||||
public boolean equals(@Nullable Object obj) {
|
||||
if (obj instanceof TupleAccountStats) {
|
||||
TupleAccountStats other = (TupleAccountStats) obj;
|
||||
return (Objects.equals(this.accounts, other.accounts) &&
|
||||
Objects.equals(this.operations, other.operations));
|
||||
} else
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user