コメント削除

This commit is contained in:
ろむねこ 2024-07-01 12:11:56 +09:00
parent 32eba3626a
commit 01f9744778
Signed by: Fujimatsu
GPG Key ID: FA1F39A1BA37D168

View File

@ -7,9 +7,6 @@ public class TaskBaseItem {
private String bgColor; // Optional
private int reward;
// コンストラクタ
// 全プロパティ
/**
* コンストラクタ (全プロパティ)
* @param id タスクID
@ -26,7 +23,6 @@ public class TaskBaseItem {
this.reward = reward;
}
// IDなし (登録時など)
/**
* コンストラクタ (IDなし)
* @param name タスク名
@ -41,7 +37,6 @@ public class TaskBaseItem {
this.reward = reward;
}
// Optionalなフィールドなし
/**
* コンストラクタ (Optionalなフィールドなし)
* @param id タスクID
@ -54,7 +49,6 @@ public class TaskBaseItem {
this.reward = reward;
}
// ID, Optionalなフィールドなし (登録時など)
/**
* コンストラクタ (ID, Optionalなフィールドなし)
* @param name タスク名
@ -65,7 +59,6 @@ public class TaskBaseItem {
this.reward = reward;
}
//
/**
* コンストラクタ ()
*/