bug 10757: override default page size only in listCfg api command

status 10757: resolved fixed
This commit is contained in:
alena 2011-08-04 12:56:00 -07:00
parent 38366074c9
commit 40f24b56d0

View File

@ -65,16 +65,6 @@ public class ListGuestOsCmd extends BaseListCmd {
/////////////// API Implementation///////////////////
/////////////////////////////////////////////////////
@Override
public Long getPageSizeVal() {
Long pageSize = 150L;
Integer pageSizeInt = getPageSize();
if (pageSizeInt != null) {
pageSize = pageSizeInt.longValue();
}
return pageSize;
}
@Override
public String getCommandName() {
return s_name;