Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/stefan-niedermann/nextcloud-deck.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordesperateCoder <echotodevnull@gmail.com>2018-12-07 20:53:47 +0300
committerdesperateCoder <echotodevnull@gmail.com>2018-12-07 20:53:47 +0300
commitf407125e8032e0001ede78c04075779256ea58cb (patch)
tree0507d3f1b98a1e5c000fd3d16e494796ffa475f1 /app/src/main/java/it/niedermann/nextcloud/deck/model/Card.java
parent65f631b8172b7dacb789c926e4676eed40dec2c8 (diff)
Merge branch 'master' of https://github.com/stefan-niedermann/nextcloud-deck into greenDAO
# Conflicts: # app/src/main/java/it/niedermann/nextcloud/deck/model/Card.java
Diffstat (limited to 'app/src/main/java/it/niedermann/nextcloud/deck/model/Card.java')
-rw-r--r--app/src/main/java/it/niedermann/nextcloud/deck/model/Card.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/app/src/main/java/it/niedermann/nextcloud/deck/model/Card.java b/app/src/main/java/it/niedermann/nextcloud/deck/model/Card.java
index 82debef98..8c3477060 100644
--- a/app/src/main/java/it/niedermann/nextcloud/deck/model/Card.java
+++ b/app/src/main/java/it/niedermann/nextcloud/deck/model/Card.java
@@ -75,11 +75,15 @@ public class Card implements RemoteEntity {
@Generated(hash = 599084715)
private transient CardDao myDao;
- @Generated(hash = 1317302338)
+ @Generated(hash = 52700939)
+ public Card() {
+ }
+
+ @Generated(hash = 1796443461)
public Card(Long localId, long accountId, Long id, int status, String title, String description,
long stackId, String type, Date lastModified, Date createdAt, Date deletedAt,
String attachments, int attachmentCount, String owner, int order, boolean archived,
- boolean notified, String dueDate, int overdue, int commentsUnread, Date lastModifiedLocal) {
+ Date dueDate, boolean notified, int overdue, int commentsUnread, Date lastModifiedLocal) {
this.localId = localId;
this.accountId = accountId;
this.id = id;
@@ -96,17 +100,13 @@ public class Card implements RemoteEntity {
this.owner = owner;
this.order = order;
this.archived = archived;
- this.notified = notified;
this.dueDate = dueDate;
+ this.notified = notified;
this.overdue = overdue;
this.commentsUnread = commentsUnread;
this.lastModifiedLocal = lastModifiedLocal;
}
- @Generated(hash = 52700939)
- public Card() {
- }
-
@Generated(hash = 1501133588)
private transient Long account__resolvedKey;