mirror of
https://github.com/vee1e/flatbuffers.git
synced 2026-09-01 17:57:25 +00:00
Fixed broken Utf8Old.java
This would not correctly encode/decode strings when substituted for the default Utf8Safe.java Change-Id: Ib303697663b5b8cbf6888492f5255b2a45384c04
This commit is contained in:
parent
9fb195cce8
commit
ff1a22a05f
1 changed files with 1 additions and 1 deletions
|
|
@ -67,6 +67,7 @@ public class Utf8Old extends Utf8 {
|
|||
throw new IllegalArgumentException("bad character encoding", e);
|
||||
}
|
||||
}
|
||||
cache.lastOutput.flip();
|
||||
return cache.lastOutput.remaining();
|
||||
}
|
||||
|
||||
|
|
@ -90,7 +91,6 @@ public class Utf8Old extends Utf8 {
|
|||
buffer.limit(offset + length);
|
||||
try {
|
||||
CharBuffer result = decoder.decode(buffer);
|
||||
result.flip();
|
||||
return result.toString();
|
||||
} catch (CharacterCodingException e) {
|
||||
throw new IllegalArgumentException("Bad encoding", e);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue