We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1473c6 commit 86693c0Copy full SHA for 86693c0
io/src/main/java/com/itextpdf/io/util/TextUtil.java
@@ -173,10 +173,10 @@ public static int[] convertToUtf32(String text) {
173
}
174
175
/**
176
- * Converts a UTF32 code point value to a String with the corresponding character(s).
+ * Converts a UTF32 code point value to a char array with the corresponding character(s).
177
*
178
* @param codePoint a Unicode value
179
- * @return the corresponding characters in a String
+ * @return the corresponding char array
180
*/
181
public static char[] convertFromUtf32(int codePoint) {
182
if (codePoint < 0x10000) {
0 commit comments