エラー回避(暫定, 廃止予定)

This commit is contained in:
r-ca 2024-01-20 23:30:09 +09:00
parent 1b70b444f2
commit ce3f9ebfd7
No known key found for this signature in database
GPG Key ID: 6A72911AC73464A9

View File

@ -57,7 +57,8 @@ public class DebugMenuLibraryItemListPageFragment extends Fragment {
// Inflate the layout for this fragment
View view = inflater.inflate(R.layout.fragment_debug_menu_library_item_list_page, container, false);
ArrayList<ListItem> listItems = lacertaLibrary.getRecentDocument(10);
// ArrayList<ListItem> listItems = lacertaLibrary.getRecentDocument(10);
ArrayList<ListItem> listItems = new ArrayList<>();
for (ListItem listItem : listItems) {
System.out.println(listItem.getTitle());
}