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 a202505 commit b3de036Copy full SHA for b3de036
src/test/java/com/fasterxml/jackson/core/write/UTF8GeneratorTest.java
@@ -1,6 +1,7 @@
1
package com.fasterxml.jackson.core.write;
2
3
import java.io.*;
4
+import java.nio.charset.StandardCharsets;
5
6
import com.fasterxml.jackson.core.io.SegmentedStringWriter;
7
import com.fasterxml.jackson.core.util.BufferRecycler;
@@ -133,7 +134,7 @@ void lastSegmentCharSplitSurrogateCharInTwoSegments() throws Exception
133
134
135
g.close();
136
- String result = new String(bb.toByteArray());
137
+ String result = new String(bb.toByteArray(), StandardCharsets.UTF_8);
138
139
bb.release();
140
br.releaseToPool();
0 commit comments