Merge pull request #1238 from rasika/master

Fix PaginationRequest.getProperty() method doesn't return anything
revert-70aa11f8
Rasika Perera 7 years ago committed by GitHub
commit 53182a23ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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() {

Loading…
Cancel
Save