sdedic commented on code in PR #5400:
URL: https://github.com/apache/netbeans/pull/5400#discussion_r1110980123
##########
extide/gradle/src/org/netbeans/modules/gradle/loaders/ExtensionPropertiesExtractor.java:
##########
@@ -170,7 +170,7 @@ public Collection<String>
keys(BuildPropertiesSupport.Property container) {
if (c == null) {
return null;
}
- return Arrays.asList(c.split(";;")).stream().map(s ->
s.replaceAll("\\;", ";")).collect(Collectors.toList());
+ return Arrays.asList(c.split(";;"));
Review Comment:
Thanks for spotting this - actually the replacement should be from "\\\;"
("escape sequence") to ";", since list item delimiter is set to ";;". Will fix
in a separate PR.
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists