Skip to content

Commit 5eaf46d

Browse files
committed
chore(examples): Avoid a redundant string template
Signed-off-by: Sebastian Schuberth <[email protected]>
1 parent 05f8725 commit 5eaf46d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/example.rules.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ fun RuleSet.highSeverityVulnerabilityInPackageRule() = packageRule("HIGH_SEVERIT
227227
issue(
228228
Severity.ERROR,
229229
"The package ${pkg.metadata.id.toCoordinates()} has a vulnerability with $scoringSystem severity > " +
230-
"$maxAcceptedSeverity",
230+
maxAcceptedSeverity,
231231
howToFixDefault()
232232
)
233233
}

0 commit comments

Comments
 (0)