Skip to content

Commit

Permalink
Fix mutf8 decode
Browse files Browse the repository at this point in the history
  • Loading branch information
Glavo committed Jan 17, 2024
1 parent af3084a commit 6bd99be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base/src/main/java/org/glavo/japp/util/MUTF8.java
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public static String stringFromMUTF8(byte[] bytes, int offset, int count) {
}
}

builder.append(uch);
builder.appendCodePoint(uch);
}

return builder.toString();
Expand Down

0 comments on commit 6bd99be

Please sign in to comment.