大規模リファクタ #143

Merged
Fujimatsu merged 61 commits from feature/change_module into main 2024-07-07 06:44:07 +00:00
Showing only changes of commit b3a1b32ba1 - Show all commits

View File

@ -53,7 +53,7 @@ public class TaskListItemAdapter extends RecyclerView.Adapter<TaskListItemAdapte
@Override
public int getItemCount() {
return 0;
return taskItemModelList == null ? 0 : taskItemModelList.size();
}
public static class ViewHolder extends RecyclerView.ViewHolder {