Skip to content

Commit

Permalink
add bug fix from fabric8io#5503 without testing deps
Browse files Browse the repository at this point in the history
  • Loading branch information
euberseder-hubspot committed Dec 21, 2023
1 parent e2dbaf7 commit 9c6257c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -588,7 +588,7 @@ public Property process() {
LOGGER.debug("Description for property {} has already been contributed by: {}", name, descriptionContributedBy);
}
}
defaultValue = p.getDefault().orElse(null);
defaultValue = p.getDefault().orElse(defaultValue);
min = p.getMin().orElse(min);
max = p.getMax().orElse(max);
pattern = p.getPattern().orElse(pattern);
Expand Down

0 comments on commit 9c6257c

Please sign in to comment.