Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[fix] Make debug 'boolean' primative as it is not used any other way #706

Merged
merged 1 commit into from
Dec 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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