Skip to content

Commit

Permalink
fix eventual nullpointer in catalogmapping.dbschema
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Bischof <[email protected]>
  • Loading branch information
stbischof committed Feb 12, 2025
1 parent 718e47e commit 56730eb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ public static final class Builder {
private String description;
private String name;
private DocumentationMappingImpl documentation;
private List<DatabaseSchemaMappingImpl> dbSchemas;
private List<DatabaseSchemaMappingImpl> dbSchemas = new ArrayList<>();

private Builder() {
}
Expand Down

0 comments on commit 56730eb

Please sign in to comment.