Refactor to remove abstraction.

This commit is contained in:
2023-05-21 15:28:50 -04:00
parent f299fcaffc
commit 0924fa2bdb
3 changed files with 88 additions and 26 deletions
+1 -1
View File
@@ -172,7 +172,7 @@ public class dbItemHandler extends dbHandlerBase {
preparedStatement.setLong(1, (long) targetId);
ResultSet rs = preparedStatement.executeQuery();
itemList = getObjectsFromRs(rs, 50);
itemList = getObjectsFromRs(rs, 10);
} catch (SQLException e) {
Logger.error(e);