garydgregory commented on code in PR #425:
URL:
https://github.com/apache/commons-configuration/pull/425#discussion_r1610538076
##########
src/main/java/org/apache/commons/configuration2/spring/ConfigurationPropertySource.java:
##########
@@ -39,7 +39,8 @@ public ConfigurationPropertySource(final String name, final
Configuration source
@Override
public Object getProperty(final String name) {
- return source.getString(name);
+ String[] propValue = source.getStringArray(name);
Review Comment:
Use `final` where you can.
--
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]