Skip to content

Commit ba3ddb5

Browse files
authored
fix: missing placeholder %s in String.format (#135)
## Description fix: missing placeholder %s in String.format **Related issue (if any):** fixes #issue_number_goes_here ## Checklist - [x] I have followed this repository's contributing guidelines. - [x] I will adhere to the project's code of conduct. ## Additional information Signed-off-by: Chao Wang <chaowan@redhat.com>
1 parent e23c08d commit ba3ddb5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/com/redhat/exhort/providers/JavaScriptProviderFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public static Provider create(final Path manifestPath) {
4040
var validLockFiles = String.join(",", JS_PROVIDERS.keySet());
4141
throw new IllegalStateException(
4242
String.format(
43-
"No known lock file found for %s. Supported lock files: ",
43+
"No known lock file found for %s. Supported lock files: %s",
4444
manifestPath, validLockFiles));
4545
}
4646
}

0 commit comments

Comments
 (0)