Skip to content

Commit

Permalink
fix initializer default value
Browse files Browse the repository at this point in the history
  • Loading branch information
nimakarimipour committed Jan 10, 2025
1 parent 4ee23a5 commit c695c24
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -542,7 +542,7 @@ public Config(Path configPath) {
.getAsString();
this.initializerAnnot =
getValueFromKey(jsonObject, "ANNOTATION:INITIALIZER")
.orElse("javax.annotation.Nullable")
.orElse("com.uber.nullaway.annotations.Initializer")
.getAsString();
this.globalDir =
Paths.get(getValueFromKey(jsonObject, "OUTPUT_DIR").orElse(null).getAsString());
Expand Down

0 comments on commit c695c24

Please sign in to comment.