am 5b63c38d: Fix 2306814: Too aggressive suggesting names from my contacts list.
Merge commit '5b63c38d1fc9e42348a8a90edf8dce6103f72864' into eclair-plus-aosp * commit '5b63c38d1fc9e42348a8a90edf8dce6103f72864': Fix 2306814: Too aggressive suggesting names from my contacts list.main
commit
d7e42d7bcc
|
@ -105,8 +105,8 @@ public class ExpandableDictionary extends Dictionary {
|
||||||
if (wordLength == depth + 1) {
|
if (wordLength == depth + 1) {
|
||||||
// Terminate this word
|
// Terminate this word
|
||||||
childNode.terminal = true;
|
childNode.terminal = true;
|
||||||
childNode.frequency += frequency; // If there are multiple similar words
|
childNode.frequency = Math.max(frequency, childNode.frequency);
|
||||||
if (childNode.frequency > 256) childNode.frequency = 256;
|
if (childNode.frequency > 255) childNode.frequency = 255;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (childNode.children == null) {
|
if (childNode.children == null) {
|
||||||
|
|
Loading…
Reference in New Issue