Skip to content

Commit

Permalink
Merge pull request #706 from hazendaz/master
Browse files Browse the repository at this point in the history
[fix] Make debug 'boolean' primative as it is not used any other way
  • Loading branch information
hazendaz authored Dec 17, 2023
2 parents 0fb8451 + cd1e7e1 commit b470ebe
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ abstract class BaseViolationCheckMojo extends AbstractMojo {
*
*/
@Parameter(defaultValue = "false", property = "spotbugs.debug")
Boolean debug
boolean debug

/**
* Relaxed reporting mode. For many detectors, this option suppresses the heuristics used to avoid reporting false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ class SpotBugsGui extends AbstractMojo implements SpotBugsPluginsTrait {
*
*/
@Parameter( defaultValue = "false", property="spotbugs.debug" )
Boolean debug
boolean debug

/**
* List of artifacts this plugin depends on. Used for resolving the Spotbugs core plugin.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ class SpotBugsMojo extends AbstractMavenReport implements SpotBugsPluginsTrait {
*
*/
@Parameter(defaultValue = "false", property = "spotbugs.debug")
Boolean debug
boolean debug

/**
* Relaxed reporting mode. For many detectors, this option suppresses the heuristics used to avoid reporting false
Expand Down

0 comments on commit b470ebe

Please sign in to comment.