Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
change back AbstractOpenApiSchema to T
  • Loading branch information
wing328 committed Apr 27, 2020
commit 5ef4f5addc576c0c4c9c347f63b5ab81b3c3064e
Original file line number Diff line number Diff line change
Expand Up @@ -1047,7 +1047,7 @@ else if (schema == null) {
return new ApiResponse<>(statusCode, responseHeaders, deserialize(response, returnType));
} else { // oneOf/anyOf
return new ApiResponse<>(
statusCode, responseHeaders, (AbstractOpenApiSchema) deserializeSchemas(response, schema));
statusCode, responseHeaders, (T) deserializeSchemas(response, schema));
}
} else {
String message = "error";
Expand Down