mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
add capacity to FusionDictionaryBufferInterface.
bug: 6669677 Change-Id: I4627093811a19c46ce13fe351d1db63cbd78cf4a
This commit is contained in:
parent
35ffb90629
commit
a161bdac88
@ -100,6 +100,11 @@ public class UserHistoryDictIOUtils {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int limit() {
|
public int limit() {
|
||||||
|
return mBuffer.length - 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int capacity() {
|
||||||
return mBuffer.length;
|
return mBuffer.length;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -63,6 +63,7 @@ public class BinaryDictInputOutput {
|
|||||||
public void position(int newPosition);
|
public void position(int newPosition);
|
||||||
public void put(final byte b);
|
public void put(final byte b);
|
||||||
public int limit();
|
public int limit();
|
||||||
|
public int capacity();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static final class ByteBufferWrapper implements FusionDictionaryBufferInterface {
|
public static final class ByteBufferWrapper implements FusionDictionaryBufferInterface {
|
||||||
@ -112,6 +113,11 @@ public class BinaryDictInputOutput {
|
|||||||
public int limit() {
|
public int limit() {
|
||||||
return mBuffer.limit();
|
return mBuffer.limit();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int capacity() {
|
||||||
|
return mBuffer.capacity();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user