Skip to content

Commit 15cb559

Browse files
author
Sebastian Mrozek
committed
Fix NPE with updated IntelliJ annotation processor
1 parent 8fbd648 commit 15cb559

File tree

1 file changed

+1
-1
lines changed
  • http-generator-core/src/main/java/io/avaje/http/generator/core/openapi

1 file changed

+1
-1
lines changed

http-generator-core/src/main/java/io/avaje/http/generator/core/openapi/DocContext.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ private ObjectMapper createObjectMapper() {
200200
}
201201

202202
private Writer createMetaWriter() throws IOException {
203-
FileObject writer = filer.createResource(StandardLocation.CLASS_OUTPUT, "meta", "openapi.json", null);
203+
FileObject writer = filer.createResource(StandardLocation.CLASS_OUTPUT, "meta", "openapi.json");
204204
return writer.openWriter();
205205
}
206206

0 commit comments

Comments
 (0)