Check if shared status changed

pull/1392/head
Alex Baker 3 years ago
parent ea152b6d09
commit 952fa69b05

@ -78,26 +78,21 @@ public abstract class FilterListItem implements Parcelable {
&& icon == other.icon && icon == other.icon
&& tint == other.tint && tint == other.tint
&& count == other.count && count == other.count
&& order == other.order; && order == other.order
&& shared == other.shared;
} }
@Override @Override
public String toString() { public String toString() {
return "FilterListItem{" return "FilterListItem{" +
+ "listingTitle='" "listingTitle='" + listingTitle + '\'' +
+ listingTitle ", id=" + id +
+ '\'' ", icon=" + icon +
+ ", id=" ", tint=" + tint +
+ id ", count=" + count +
+ ", icon=" ", shared=" + shared +
+ icon ", order=" + order +
+ ", tint=" '}';
+ tint
+ ", count="
+ count
+ ", order="
+ order
+ '}';
} }
public enum Type { public enum Type {

Loading…
Cancel
Save