You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@netbeans.apache.org by "sdedic (via GitHub)" <gi...@apache.org> on 2023/03/27 04:53:03 UTC

[GitHub] [netbeans] sdedic commented on a diff in pull request #5535: Fixed key escaping; fixed list/map property extraction.

sdedic commented on code in PR #5535:
URL: https://github.com/apache/netbeans/pull/5535#discussion_r1148781123


##########
extide/gradle/src/org/netbeans/modules/gradle/loaders/ExtensionPropertiesExtractor.java:
##########
@@ -170,7 +171,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(";;")).stream().map(s -> s.replaceAll("\\\\;", ";")).collect(Collectors.toList());

Review Comment:
   Apologies, completely forgot about this - fixed in 8f0cfa2c1683



-- 
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: notifications-unsubscribe@netbeans.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists