mirror of
https://github.com/nextcloud/talk-android
synced 2025-06-20 03:59:35 +01:00
adapt to de-lomboked code-base
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
This commit is contained in:
parent
5c26a0c5a8
commit
712fdfeac4
@ -105,6 +105,14 @@ public class DecryptedPushMessage {
|
|||||||
return this.timestamp;
|
return this.timestamp;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public long[] getNotificationIds() {
|
||||||
|
return notificationIds;
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isDeleteMultiple() {
|
||||||
|
return deleteMultiple;
|
||||||
|
}
|
||||||
|
|
||||||
public void setApp(String app) {
|
public void setApp(String app) {
|
||||||
this.app = app;
|
this.app = app;
|
||||||
}
|
}
|
||||||
@ -145,6 +153,14 @@ public class DecryptedPushMessage {
|
|||||||
this.timestamp = timestamp;
|
this.timestamp = timestamp;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void setNotificationIds(long[] notificationIds) {
|
||||||
|
this.notificationIds = notificationIds;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDeleteMultiple(boolean deleteMultiple) {
|
||||||
|
this.deleteMultiple = deleteMultiple;
|
||||||
|
}
|
||||||
|
|
||||||
public boolean equals(final Object o) {
|
public boolean equals(final Object o) {
|
||||||
if (o == this) {
|
if (o == this) {
|
||||||
return true;
|
return true;
|
||||||
|
Loading…
Reference in New Issue
Block a user