スタブメソッド実装

This commit is contained in:
ろむねこ 2024-01-12 10:59:39 +09:00
parent c663d78e11
commit 3cd1f50f34
No known key found for this signature in database
GPG Key ID: FA1F39A1BA37D168

View File

@ -115,12 +115,12 @@ public class LacertaLibraryStubImpl implements LacertaLibrary {
@Override
public LibraryItemPage getRecentDocument(int limit) {
return null;
return getRecentDocumentPage(limit);
}
@Override
public LibraryItemPage getRecentDocument(int limit, int offset) {
return null;
return getRecentDocumentPage(limit);
}
@Override