Skip to content

Fix: Crashes when parsing diff for very large specs #388

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 22, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update cli/src/main/java/org/openapitools/openapidiff/cli/Main.java
Co-authored-by: Jochen Schalanda <jochen@schalanda.name>
  • Loading branch information
eacolina and joschi authored Jun 22, 2022
commit 6f0da56a12cbaa0e9e433573da24b0ac2ea0553e
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,6 @@ public static void main(String... args) {
JsonRender jsonRender = new JsonRender();
String outputFile = line.getOptionValue("json");
jsonRender.renderToFile(result, outputFile);
System.out.println("Succesfully wrote diff to output file");
}
if (line.hasOption("state")) {
System.out.println(result.isChanged().getValue());
Expand Down