1
0
Fork 0
mirror of https://github.com/geometer/FBReaderJ.git synced 2025-10-05 19:42:17 +02:00

items limit has been increased to 500

git-svn-id: https://only.mawhrin.net/repos/FBReaderJ/trunk@1333 6a642e6f-84f6-412e-ac94-c4a38d5a04b0
This commit is contained in:
Vasiliy Bout 2010-04-30 18:08:43 +00:00
parent 8c51ed6c1f
commit f4b5294dcf

View file

@ -39,7 +39,7 @@ abstract class ItemsLoadingRunnable implements Runnable {
private final int myItemsLimit;
public ItemsLoadingRunnable(ItemsLoadingHandler handler, int type) {
this(handler, type, 1000, 250);
this(handler, type, 1000, 500);
}
public ItemsLoadingRunnable(ItemsLoadingHandler handler, int type, long updateIntervalMillis, int itemsLimit) {