Merge pull request #1238 from rasika/master

Fix PaginationRequest.getProperty() method doesn't return anything
This commit is contained in:
Rasika Perera 2018-03-20 07:34:18 +05:30 committed by GitHub
commit 53182a23ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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