mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
Rename variable name to remove ambiguity
Change-Id: If95c34c9eab09cbc941bef5ee3d34b9048bf3bf9
This commit is contained in:
parent
2bdd5290a9
commit
88cd34f8f8
@ -823,14 +823,14 @@ abstract public class ExpandableBinaryDictionary extends Dictionary {
|
||||
int token = 0;
|
||||
do {
|
||||
// TODO: We need a new API that returns *new* un-synced data.
|
||||
final BinaryDictionary.GetNextWordPropertyResult result =
|
||||
final BinaryDictionary.GetNextWordPropertyResult nextWordPropertyResult =
|
||||
binaryDictionary.getNextWordProperty(token);
|
||||
final WordProperty wordProperty = result.mWordProperty;
|
||||
final WordProperty wordProperty = nextWordPropertyResult.mWordProperty;
|
||||
if (wordProperty == null) {
|
||||
break;
|
||||
}
|
||||
wordPropertyList.add(wordProperty);
|
||||
token = result.mNextToken;
|
||||
token = nextWordPropertyResult.mNextToken;
|
||||
} while (token != 0);
|
||||
result.set(wordPropertyList.toArray(new WordProperty[wordPropertyList.size()]));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user