From 559b0cad8015edade13ed073a9df03f82c58acb0 Mon Sep 17 00:00:00 2001 From: Jeremy Landis Date: Mon, 11 Nov 2024 14:31:44 -0500 Subject: [PATCH] [logging] Use correct quoting in log line --- src/main/groovy/org/codehaus/mojo/spotbugs/SpotBugsMojo.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/groovy/org/codehaus/mojo/spotbugs/SpotBugsMojo.groovy b/src/main/groovy/org/codehaus/mojo/spotbugs/SpotBugsMojo.groovy index 7edf31ed..b5f0c395 100644 --- a/src/main/groovy/org/codehaus/mojo/spotbugs/SpotBugsMojo.groovy +++ b/src/main/groovy/org/codehaus/mojo/spotbugs/SpotBugsMojo.groovy @@ -767,7 +767,7 @@ class SpotBugsMojo extends AbstractMavenReport implements SpotBugsPluginsTrait { } } - log.debug("jxr report links are ${isEnabled ? "enabled" : "disabled"}") + log.debug("jxr report links are ${isEnabled ? 'enabled' : 'disabled'}") return isEnabled }