bug 9452: Remove the overridden getPageSizeVal function in listCapacity and use it from BaseListCmd which has the changes for default pagination to unlimited.

This commit is contained in:
Nitin 2011-07-19 18:45:47 +05:30
parent e344d5f63a
commit 6d85c9952c

View File

@ -84,16 +84,6 @@ public class ListCapacityCmd extends BaseListCmd {
public String getCommandName() {
return s_name;
}
@Override
public Long getPageSizeVal() {
Long pageSizeVal = 100L;
Integer pageSize = getPageSize();
if (pageSize != null) {
pageSizeVal = pageSize.longValue();
}
return pageSizeVal;
}
@Override
public void execute(){