fix: swagger导入报错

This commit is contained in:
chenjianxing 2021-05-11 11:11:56 +08:00 committed by jianxing
parent cc6ac8f768
commit c19f66e75e
1 changed files with 3 additions and 1 deletions

View File

@ -306,7 +306,9 @@ public class Swagger3Parser extends SwaggerAbstractParser {
kv.setType("file");
}
}
body.getKvs().add(kv);
if (body != null) {
body.getKvs().add(kv);
}
}
}