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
0b96bc4b
Commit
0b96bc4b
authored
13 years ago
by
Jean Chalard
Browse files
Options
Downloads
Patches
Plain Diff
Reduction, step 4
Change-Id: Ib27dc6e9486c3f0f2ec1e94a88a52d12c1af2d38
parent
5a61d03f
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/Suggest.java
+3
-21
3 additions, 21 deletions
java/src/com/android/inputmethod/latin/Suggest.java
with
3 additions
and
21 deletions
java/src/com/android/inputmethod/latin/Suggest.java
+
3
−
21
View file @
0b96bc4b
...
...
@@ -277,15 +277,9 @@ public class Suggest implements Dictionary.WordCallback {
// Treating USER_TYPED as UNIGRAM suggestion for logging now.
LatinImeLogger
.
onAddSuggestedWord
(
typedWord
,
Suggest
.
DIC_USER_TYPED
,
Dictionary
.
UNIGRAM
);
mConsideredWord
=
consideredWord
;
mConsideredWord
=
""
;
// TODO: Change this scheme - a boolean is not enough. A whitelisted word may be "valid"
// but still autocorrected from - in the case the whitelist only capitalizes the word.
// The whitelist should be case-insensitive, so it's not possible to be consistent with
// a boolean flag. Right now this is handled with a slight hack in
// WhitelistDictionary#shouldForciblyAutoCorrectFrom.
final
boolean
allowsToBeAutoCorrected
=
AutoCorrection
.
allowsToBeAutoCorrected
(
getUnigramDictionaries
(),
consideredWord
,
false
);
final
boolean
allowsToBeAutoCorrected
=
false
;
if
(
correctionMode
==
CORRECTION_FULL_BIGRAM
)
{
// At first character typed, search only the bigrams
...
...
@@ -309,23 +303,11 @@ public class Suggest implements Dictionary.WordCallback {
}
CharSequence
whitelistedWord
=
null
;
final
boolean
hasAutoCorrection
;
if
(
CORRECTION_FULL
==
correctionMode
||
CORRECTION_FULL_BIGRAM
==
correctionMode
)
{
final
CharSequence
autoCorrection
=
null
;
hasAutoCorrection
=
(
null
!=
autoCorrection
);
}
else
{
hasAutoCorrection
=
false
;
}
// TODO: SuggestedWords.Builder#addWord will not insert any isEmpty() word, so the
// following is useless
mSuggestions
.
add
(
0
,
typedWord
);
StringUtils
.
removeDupes
(
mSuggestions
);
return
new
SuggestedWords
.
Builder
().
addWords
(
mSuggestions
,
null
)
.
setAllowsToBeAutoCorrected
(
allowsToBeAutoCorrected
)
.
setHasAutoCorrection
(
hasAutoCorrection
);
.
setHasAutoCorrection
(
false
);
}
// TODO: cleanup dictionaries looking up and suggestions building with SuggestedWords.Builder
...
...
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