ctubbsii commented on code in PR #1120:
URL: https://github.com/apache/fluo/pull/1120#discussion_r1059479860
##########
modules/api/src/main/java/org/apache/fluo/api/config/SimpleConfiguration.java:
##########
@@ -242,6 +243,27 @@ public void setProperty(String key, String value) {
internalConfig.setProperty(key, value);
}
+ public void setProperties(String key, String... values) {
+ if (values == null) {
Review Comment:
`values` can be null, but you can also have an array with some of the
elements null. Both cases should be an `IllegalArgumentException`, I think.
--
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]