Skip to content
Snippets Groups Projects
Commit e945a182 authored by Ken Wakasa's avatar Ken Wakasa
Browse files

Remove ByteBuffer prefix which wrongly suppresses a class member.

Change-Id: I5114106eca0f67326fb3f939165bae0c122ed982
parent 4606367f
No related branches found
No related tags found
No related merge requests found
......@@ -80,7 +80,7 @@ public class BinaryDictionary extends Dictionary {
InputStream is = context.getResources().openRawResource(resId);
try {
int avail = is.available();
ByteBuffer mNativeDictDirectBuffer =
mNativeDictDirectBuffer =
ByteBuffer.allocateDirect(avail).order(ByteOrder.nativeOrder());
int got = Channels.newChannel(is).read(mNativeDictDirectBuffer);
if (got != avail) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment