We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd5588b commit 0fdaa1dCopy full SHA for 0fdaa1d
src/main/java/com/qdesrame/openapi/diff/output/ConsoleRender.java
@@ -190,7 +190,13 @@ private String incompatibility(ComposedChanged changed) {
190
if (changed instanceof ChangedSchema) {
191
ChangedSchema cs = (ChangedSchema) changed;
192
193
- return cs.getChangedProperties().keySet().stream().collect(Collectors.joining())
+ String description = null;
194
+ if (!cs.getChangedProperties().isEmpty()) {
195
+ description = cs.getChangedProperties().keySet().stream().collect(Collectors.joining());
196
+ } else if (cs.getItems() != null) {
197
+ description = "[n]";
198
+ }
199
+ return description
200
+ "."
201
+ cs.getChangedElements().stream()
202
.map(
0 commit comments