Skip to content

Commit

Permalink
added UTF8 support
Browse files Browse the repository at this point in the history
  • Loading branch information
dghgit committed May 29, 2024
1 parent 7065651 commit d441274
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ public void writeln(String s)
{
try
{
byte abyte0[] = Strings.toByteArray(s);
byte abyte0[] = Strings.toUTF8ByteArray(s);
super.out.write(abyte0);
super.out.write(newline);
}
Expand Down

0 comments on commit d441274

Please sign in to comment.