getTotalSize() 수정

master
xit 2 years ago
parent a6bc623327
commit 75c5ab961f

@ -59,10 +59,8 @@ public class BoundedList<E> extends ArrayList<E> {
Pageable row = (Pageable)first; Pageable row = (Pageable)first;
totalSize = row.getTotalSize(); totalSize = row.getTotalSize();
} }
return totalSize;
} }
return totalSize < 1 ? totalSize = size() : totalSize;
return totalSize = size();
} }
/** . /** .
* @param totalSize * @param totalSize

Loading…
Cancel
Save