gtully commented on code in PR #4147:
URL: https://github.com/apache/activemq-artemis/pull/4147#discussion_r920205299
##########
artemis-server/src/main/java/org/apache/activemq/artemis/core/config/impl/ConfigurationImpl.java:
##########
@@ -550,6 +550,17 @@ public <T> T convert(Class<T> type, Object value) {
}
}, TransformerConfiguration.class);
+ beanUtils.getConvertUtils().register(new Converter() {
+ @Override
+ public <T> T convert(Class<T> type, Object value) {
+ List convertedValue = new ArrayList<String>();
+ for (String entry : value.toString().split(",")) {
Review Comment:
that warn rule must be quite specific, I am not seeing it with -Derrorprone
or -Pjdk11to15-errorprone with openjdk 11
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]