Skip to content

Commit

Permalink
Fix bug with option flags from previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Mumfrey committed Jun 7, 2024
1 parent 1bae530 commit 2d14c78
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -568,7 +568,7 @@ private Option(Option parent, Inherit inheritance, boolean hidden, String proper
}

private Option(Option parent, Inherit inheritance, String property, boolean isFlag, String defaultStringValue) {
this(parent, inheritance, false, property, false, defaultStringValue);
this(parent, inheritance, false, property, isFlag, defaultStringValue);
}

private Option(Option parent, Inherit inheritance, boolean hidden, String property, boolean isFlag, String defaultStringValue) {
Expand Down

0 comments on commit 2d14c78

Please sign in to comment.