ethicalhacker

Results 4 comments of ethicalhacker

I am calling OpenAPIParser in this context: ``` ParseOptions parseOptions = new ParseOptions(); parseOptions.setResolve(true); parseOptions.setResolveFully(true); SwaggerParseResult result = new OpenAPIParser().readLocation(fileLocation,null,parseOptions); OpenAPI openAPI = result.getOpenAPI(); ``` note that all paths are...

I am using 2.0.26, I just tried to move to version 2.0.27-SNAPSHOT by adding it as a maven dependency in my POM but maven couldn't load it as it is...

After debugging it seems that the error was caused by the `fileLocation` value which includes spaces, so the code stops at this line: `URI absURI = new URI(path.replaceAll("\\\\", "/"));` The...

@jhannes Thank you, I have changed the title. The line you mentioned is available in the code, I mistakenly mentioned before that it is not (I deleted the comment ),...