This is an automated email from the ASF dual-hosted git repository.
gtully pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git
The following commit(s) were added to refs/heads/main by this push:
new 37a609aff9 NO-JIRA add missing space to exception message string
37a609aff9 is described below
commit 37a609aff9fa907db10f2a93093f11047aa1b4c2
Author: Gary Tully <[email protected]>
AuthorDate: Thu May 8 13:50:08 2025 +0100
NO-JIRA add missing space to exception message string
---
.../apache/activemq/artemis/core/config/impl/ConfigurationImpl.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/artemis-server/src/main/java/org/apache/activemq/artemis/core/config/impl/ConfigurationImpl.java
b/artemis-server/src/main/java/org/apache/activemq/artemis/core/config/impl/ConfigurationImpl.java
index 1dce260477..303bf59a74 100644
---
a/artemis-server/src/main/java/org/apache/activemq/artemis/core/config/impl/ConfigurationImpl.java
+++
b/artemis-server/src/main/java/org/apache/activemq/artemis/core/config/impl/ConfigurationImpl.java
@@ -730,10 +730,10 @@ public class ConfigurationImpl implements Configuration,
Serializable {
try {
autoFillCollections.removeByNameProperty(propName,
targetCollection);
} catch (NoSuchMethodException e) {
- throw new InvocationTargetException(e, "Can only
remove named entries from collections or maps" + name + ", on: " + target);
+ throw new InvocationTargetException(e, "Can only
remove named entries from collections or maps. property: " + name + ", on: " +
target);
}
} else {
- throw new InvocationTargetException(null, "Can only
remove entries from collections or maps" + name + ", on: " + target);
+ throw new InvocationTargetException(null, "Can only
remove entries from collections or maps. property: " + name + ", on: " +
target);
}
logger.trace("removed from target, bean: {}, name: {}",
target.getClass(), name);
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information, visit: https://activemq.apache.org/contact