修复文档显示问题

This commit is contained in:
tanghc
2019-08-22 20:12:56 +08:00
parent b5a06b9faf
commit 0b4e09b0e5

View File

@@ -200,7 +200,7 @@ public class SwaggerDocParser implements DocParser {
}
protected String getResponseRef(JSONObject docInfo) {
String ref = Optional.ofNullable(docInfo.getJSONObject("responses"))
return Optional.ofNullable(docInfo.getJSONObject("responses"))
.flatMap(jsonObject -> Optional.ofNullable(jsonObject.getJSONObject("200")))
.flatMap(jsonObject -> Optional.ofNullable(jsonObject.getJSONObject("schema")))
.flatMap(jsonObject -> {
@@ -216,7 +216,6 @@ public class SwaggerDocParser implements DocParser {
return Optional.of($ref);
})
.orElse("");
return ref;
}
}