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 6fafd82 commit cd84bb8Copy full SHA for cd84bb8
src/main/groovy/com/github/hauner/openapi/spring/parser/openapi4j/Parser.groovy
@@ -32,11 +32,11 @@ class Parser {
32
ParserOpenApi parse (String apiPath) {
33
34
OpenApi3 api = new OpenApi3Parser ()
35
- .parse (new File (apiPath), true)
+ .parse (new File (apiPath), false)
36
37
- ValidationResults results = OpenApi3Validator
38
- .instance ()
39
- .validate (api)
+ ValidationResults results = null //OpenApi3Validator
+// .instance ()
+// .validate (api)
40
41
new OpenApi (api, results)
42
}
0 commit comments