Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LatinIME
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
keyboard
LatinIME
Commits
88cd34f8
Commit
88cd34f8
authored
10 years ago
by
Jatin Matani
Browse files
Options
Downloads
Patches
Plain Diff
Rename variable name to remove ambiguity
Change-Id: If95c34c9eab09cbc941bef5ee3d34b9048bf3bf9
parent
2bdd5290
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
java/src/com/android/inputmethod/latin/ExpandableBinaryDictionary.java
+3
-3
3 additions, 3 deletions
...android/inputmethod/latin/ExpandableBinaryDictionary.java
with
3 additions
and
3 deletions
java/src/com/android/inputmethod/latin/ExpandableBinaryDictionary.java
+
3
−
3
View file @
88cd34f8
...
...
@@ -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
r
esult
=
final
BinaryDictionary
.
GetNextWordPropertyResult
nextWordPropertyR
esult
=
binaryDictionary
.
getNextWordProperty
(
token
);
final
WordProperty
wordProperty
=
r
esult
.
mWordProperty
;
final
WordProperty
wordProperty
=
nextWordPropertyR
esult
.
mWordProperty
;
if
(
wordProperty
==
null
)
{
break
;
}
wordPropertyList
.
add
(
wordProperty
);
token
=
r
esult
.
mNextToken
;
token
=
nextWordPropertyR
esult
.
mNextToken
;
}
while
(
token
!=
0
);
result
.
set
(
wordPropertyList
.
toArray
(
new
WordProperty
[
wordPropertyList
.
size
()]));
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment