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
ae234abd
Commit
ae234abd
authored
13 years ago
by
satok
Browse files
Options
Downloads
Patches
Plain Diff
Fix the locale of the flags in BinaryDicitonary for tests
Bug: 6129372 Change-Id: I5611f88b10c44261b6145c9dc8615b80e4341e77
parent
43ebd8a0
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
java/src/com/android/inputmethod/latin/DictionaryFactory.java
+2
-2
2 additions, 2 deletions
.../src/com/android/inputmethod/latin/DictionaryFactory.java
java/src/com/android/inputmethod/latin/Suggest.java
+1
-1
1 addition, 1 deletion
java/src/com/android/inputmethod/latin/Suggest.java
with
3 additions
and
3 deletions
java/src/com/android/inputmethod/latin/DictionaryFactory.java
+
2
−
2
View file @
ae234abd
...
...
@@ -145,10 +145,10 @@ public class DictionaryFactory {
* @return the created dictionary, or null.
*/
public
static
Dictionary
createDictionaryForTest
(
Context
context
,
File
dictionary
,
long
startOffset
,
long
length
,
Flag
[]
flagArray
)
{
long
startOffset
,
long
length
,
Flag
[]
flagArray
,
Locale
locale
)
{
if
(
dictionary
.
isFile
())
{
return
new
BinaryDictionary
(
context
,
dictionary
.
getAbsolutePath
(),
startOffset
,
length
,
flagArray
,
null
);
flagArray
,
locale
);
}
else
{
Log
.
e
(
TAG
,
"Could not find the file. path="
+
dictionary
.
getAbsolutePath
());
return
null
;
...
...
This diff is collapsed.
Click to expand it.
java/src/com/android/inputmethod/latin/Suggest.java
+
1
−
1
View file @
ae234abd
...
...
@@ -112,7 +112,7 @@ public class Suggest implements Dictionary.WordCallback {
final
long
startOffset
,
final
long
length
,
final
Flag
[]
flagArray
,
final
Locale
locale
)
{
initSynchronously
(
context
,
DictionaryFactory
.
createDictionaryForTest
(
context
,
dictionary
,
startOffset
,
length
,
flagArray
),
locale
);
startOffset
,
length
,
flagArray
,
locale
),
locale
);
}
private
void
initWhitelistAndAutocorrectAndPool
(
final
Context
context
,
final
Locale
locale
)
{
...
...
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