ppkarwasz commented on code in PR #4077:
URL: https://github.com/apache/logging-log4j2/pull/4077#discussion_r2984135768


##########
log4j-core-test/src/test/java/org/apache/logging/log4j/core/layout/XmlLayoutTest.java:
##########
@@ -397,4 +403,87 @@ public void testIncludeNullDelimiterFalse() {
         final String str = 
layout.toSerializable(LogEventFixtures.createLogEvent());
         assertFalse(str.endsWith("\0"));
     }
+
+    // In Java 11 this can be replaced with Character.toString
+    private static String codePointToString(final int codePoint) {
+        return new String(Character.toChars(codePoint));
+    }

Review Comment:
   Removed in 
https://github.com/apache/logging-log4j2/pull/4077/commits/09683fc1381653cfb9d4533a12f245cbc0d81e26



-- 
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]

Reply via email to