Skip to content

Commit

Permalink
chore(scanner): Wrap a string differently to avoid a string interpola…
Browse files Browse the repository at this point in the history
…tion

Signed-off-by: Sebastian Schuberth <[email protected]>
  • Loading branch information
sschuberth committed Feb 19, 2024
1 parent d30e302 commit 5d77dd3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scanner/src/main/kotlin/Scanner.kt
Original file line number Diff line number Diff line change
Expand Up @@ -709,8 +709,8 @@ class Scanner(
pkg.id,
Issue(
source = "Scanner",
message = "Could not create file archive for " +
"'${pkg.id.toCoordinates()}': ${e.collectMessages()}"
message = "Could not create file archive for '${pkg.id.toCoordinates()}': "
+ e.collectMessages()
)
)
} finally {
Expand Down

0 comments on commit 5d77dd3

Please sign in to comment.