Skip to content

Commit

Permalink
Fix includeParent field value not matching Parameter#defaultValue
Browse files Browse the repository at this point in the history
The field value is overwritten by `Parameter#defaultValue` anyway, but the
mismatching initial field value might lead to confusion nonetheless.
  • Loading branch information
Marcono1234 authored and slawekjaranowski committed Jul 2, 2024
1 parent 3c4efe8 commit 13242ee
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ public class DisplayPropertyUpdatesMojo extends AbstractVersionsDisplayMojo {
* @since 2.14.0
*/
@Parameter(property = "includeParent", defaultValue = "false")
protected boolean includeParent = true;
protected boolean includeParent;

// -------------------------- STATIC METHODS --------------------------

Expand Down

0 comments on commit 13242ee

Please sign in to comment.