From 49cc132f14818f1bf01a0d9fab8885af35abf1f7 Mon Sep 17 00:00:00 2001 From: r-ca Date: Thu, 14 Dec 2023 03:41:33 +0900 Subject: [PATCH] =?UTF-8?q?NonNull=E3=82=A2=E3=83=8E=E3=83=86=E3=83=BC?= =?UTF-8?q?=E3=82=B7=E3=83=A7=E3=83=B3=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/one/nem/lacerta/source/database/entity/Library.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/src/main/java/one/nem/lacerta/source/database/entity/Library.java b/source/src/main/java/one/nem/lacerta/source/database/entity/Library.java index 9eeac989..34cb7e1c 100644 --- a/source/src/main/java/one/nem/lacerta/source/database/entity/Library.java +++ b/source/src/main/java/one/nem/lacerta/source/database/entity/Library.java @@ -1,5 +1,6 @@ package one.nem.lacerta.source.database.entity; +import androidx.annotation.NonNull; import androidx.room.ColumnInfo; import androidx.room.Entity; import androidx.room.PrimaryKey; @@ -9,6 +10,7 @@ public class Library { @PrimaryKey @ColumnInfo(name = "id") + @NonNull public String id; // ドキュメントID @ColumnInfo(name = "root_path")