Merge branch 'feature-calendarsync' of https://github.com/Freeyourgadget/Gadgetbridge into feature-calendarsync
This commit is contained in:
commit
087f5879b0
|
@ -156,7 +156,8 @@ public class CalendarEvents {
|
||||||
return calName;
|
return calName;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override public boolean equals(Object other) {
|
@Override
|
||||||
|
public boolean equals(Object other) {
|
||||||
if (other instanceof CalendarEvent) {
|
if (other instanceof CalendarEvent) {
|
||||||
CalendarEvent e = (CalendarEvent) other;
|
CalendarEvent e = (CalendarEvent) other;
|
||||||
return (this.getId() == e.getId()) &&
|
return (this.getId() == e.getId()) &&
|
||||||
|
@ -170,5 +171,17 @@ public class CalendarEvents {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int hashCode() {
|
||||||
|
int result = (int) id;
|
||||||
|
result = 31 * result + title.hashCode();
|
||||||
|
result = 31 * result + Long.valueOf(begin).hashCode();
|
||||||
|
result = 31 * result + location.hashCode();
|
||||||
|
result = 31 * result + description.hashCode();
|
||||||
|
result = 31 * result + Long.valueOf(end).hashCode();
|
||||||
|
result = 31 * result + calName.hashCode();
|
||||||
|
return result;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue