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

revert-70aa11f8
Rasika Perera 7 years ago
parent ac7e71282e
commit 272d64b0b2

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

Loading…
Cancel
Save