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;
totalSize = row.getTotalSize();
}
return totalSize;
}
return totalSize = size();
return totalSize < 1 ? totalSize = size() : totalSize;
}
/** .
* @param totalSize

Loading…
Cancel
Save