コメント追加

This commit is contained in:
ろむねこ 2024-06-28 12:37:29 +09:00
parent 8e8e405f7d
commit 0fd4896bdc
Signed by: Fujimatsu
GPG Key ID: FA1F39A1BA37D168

View File

@ -37,7 +37,7 @@ public class ChildDataImpl implements ChildData {
Call<ChildListResponse> call = kidShiftApiService.getChildList();
try {
Response<ChildListResponse> response = call.execute();
if (!response.isSuccessful()) return null;
if (!response.isSuccessful()) return null; // TODO-rca: nullとするかは検討
ChildListResponse body = response.body();
if (body == null) return null;