mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-23 00:13:16 +00:00
エラー回避(暫定, 廃止予定)
This commit is contained in:
parent
ce3f9ebfd7
commit
11e32572ef
|
@ -30,9 +30,10 @@ public class LacertaSearchStubImpl implements LacertaSearch {
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public ArrayList<ListItem> autoSearch(String query, int limit) {
|
public ArrayList<ListItem> autoSearch(String query, int limit) {
|
||||||
logger.debug("SearchStub", "autoSearch");
|
// logger.debug("SearchStub", "autoSearch");
|
||||||
logger.debug("SearchStub", "query: " + query);
|
// logger.debug("SearchStub", "query: " + query);
|
||||||
return library.getLibraryPage(limit).getListItems();
|
// return library.getLibraryPage(limit).getListItems();
|
||||||
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -44,8 +45,9 @@ public class LacertaSearchStubImpl implements LacertaSearch {
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public ArrayList<ListItem> autoSearch(String query, int limit, int offset) {
|
public ArrayList<ListItem> autoSearch(String query, int limit, int offset) {
|
||||||
logger.debug("SearchStub", "autoSearch");
|
// logger.debug("SearchStub", "autoSearch");
|
||||||
logger.debug("SearchStub", "query: " + query);
|
// logger.debug("SearchStub", "query: " + query);
|
||||||
return library.getLibraryPage(limit, offset).getListItems();
|
// return library.getLibraryPage(limit, offset).getListItems();
|
||||||
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user