Skip to content

Commit cd84bb8

Browse files
committed
1 parent 6fafd82 commit cd84bb8

File tree

1 file changed

+4
-4
lines changed
  • src/main/groovy/com/github/hauner/openapi/spring/parser/openapi4j

1 file changed

+4
-4
lines changed

src/main/groovy/com/github/hauner/openapi/spring/parser/openapi4j/Parser.groovy

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@ class Parser {
3232
ParserOpenApi parse (String apiPath) {
3333

3434
OpenApi3 api = new OpenApi3Parser ()
35-
.parse (new File (apiPath), true)
35+
.parse (new File (apiPath), false)
3636

37-
ValidationResults results = OpenApi3Validator
38-
.instance ()
39-
.validate (api)
37+
ValidationResults results = null //OpenApi3Validator
38+
// .instance ()
39+
// .validate (api)
4040

4141
new OpenApi (api, results)
4242
}

0 commit comments

Comments
 (0)