Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 7c09357

Browse files
committedFeb 27, 2021
code review
1 parent 71c0083 commit 7c09357

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎springdoc-openapi-data-rest/src/main/java/org/springdoc/data/rest/core/DataRestResponseService.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ private static class MapModel extends RepresentationModel<MapModel> {
332332
/**
333333
* The Content.
334334
*/
335-
private Map<? extends Object, ? extends Object> content;
335+
private Map content;
336336

337337
/**
338338
* Instantiates a new Map model.
@@ -351,7 +351,7 @@ public MapModel(Map<? extends Object, ? extends Object> content, Link... links)
351351
* @return the content
352352
*/
353353
@JsonAnyGetter
354-
public Map<? extends Object, ? extends Object> getContent() {
354+
public Map getContent() {
355355
return content;
356356
}
357357

0 commit comments

Comments
 (0)
Please sign in to comment.