yybmion commented on PR #3921:
URL: https://github.com/apache/logging-log4j2/pull/3921#issuecomment-3365879970
Thanks for the review @vy, Changes applied as requested.
Added a **null element check in the URI list** to throw a
ConfigurationException when any element is null. This ensures that
`testGetConfigurationWithNullInList` passes.
```java
for (final URI uri : uris) {
if (uri == null) {
throw new ConfigurationException("URI list contains null element");
}
...
```
--
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]