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

github.com/stefan-niedermann/nextcloud-notes.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Niedermann <info@niedermann.it>2020-10-06 13:54:53 +0300
committerStefan Niedermann <info@niedermann.it>2020-10-06 13:54:53 +0300
commit5597fd0dbc48e91d270a6d746d49c777db024531 (patch)
tree8317d97b029543313c5d19b9ffbdcc7502f98d34 /app/src/main/java/it/niedermann/owncloud/notes/shared
parentdd48384fe865db1688eca4edfba72a88750887a1 (diff)
#831 Migrate from SQLiteOpenHelper to Room
Remove old AbstractNotesDatabase
Diffstat (limited to 'app/src/main/java/it/niedermann/owncloud/notes/shared')
-rw-r--r--app/src/main/java/it/niedermann/owncloud/notes/shared/model/OldCategory.java (renamed from app/src/main/java/it/niedermann/owncloud/notes/shared/model/Category.java)4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/src/main/java/it/niedermann/owncloud/notes/shared/model/Category.java b/app/src/main/java/it/niedermann/owncloud/notes/shared/model/OldCategory.java
index ab1d10a1..58e558b8 100644
--- a/app/src/main/java/it/niedermann/owncloud/notes/shared/model/Category.java
+++ b/app/src/main/java/it/niedermann/owncloud/notes/shared/model/OldCategory.java
@@ -4,14 +4,14 @@ import androidx.annotation.Nullable;
import java.io.Serializable;
-public class Category implements Serializable {
+public class OldCategory implements Serializable {
@Nullable
public final String category;
@Nullable
public final Boolean favorite;
- public Category(@Nullable String category, @Nullable Boolean favorite) {
+ public OldCategory(@Nullable String category, @Nullable Boolean favorite) {
this.category = category;
this.favorite = favorite;
}