mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Fix PaginationRequest.getProperty() method doesn't return anything
This commit is contained in:
parent
ac7e71282e
commit
272d64b0b2
@ -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…
Reference in New Issue
Block a user