This is an automated email from the ASF dual-hosted git repository.

vy pushed a commit to branch release/10.0.0
in repository https://gitbox.apache.org/repos/asf/logging-parent.git

commit d245b6bfe14da8582483cfa35ead1e2e3c1fa613
Author: Volkan Yazıcı <[email protected]>
AuthorDate: Mon Sep 4 11:21:07 2023 +0200

    Fix `System.err.format()` call in BSH
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index b6fbe42..5c8b008 100644
--- a/pom.xml
+++ b/pom.xml
@@ -665,7 +665,7 @@
                     });
                     System.err.format(
                             "Error: Was expecting at least %d attachments, 
found %d!%n",
-                            ${minAttachmentCount}, 
attachmentPathByFile.size());
+                            new Object[]{${minAttachmentCount}, 
attachmentPathByFile.size()});
                     System.err.println("Tip: Have you already executed the 
Maven `package` goal?");
                     System.exit(1);
                 }

Reply via email to