Fix PaginationRequest.getProperty() method doesn't return anything

This commit is contained in:
Rasika Perera 2018-03-20 07:31:11 +05:30
parent ac7e71282e
commit 272d64b0b2

View File

@ -141,8 +141,8 @@ public class PaginationRequest {
this.property.putAll(parameters);
}
public void getProperty(String key) {
this.property.get(key);
public Object getProperty(String key) {
return this.property.get(key);
}
public Map<String, Object> getProperties() {