Skip to content
Closed
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
Fix test
  • Loading branch information
sorin-florea committed May 10, 2022
commit f7d3c0ee659e9de8050a328bd2f06a8c190ba68b
Original file line number Diff line number Diff line change
Expand Up @@ -1170,7 +1170,7 @@ private void processOperation(String resourcePath, String httpMethod, Operation

Map<String, Schema> properties = mapProperties(model);
if(!properties.isEmpty()) {
if(schema.getProperties() == null) {
if(schema.getProperties() != null) {
properties.putAll(schema.getProperties());
}
schema.setProperties(properties);
Expand Down