am 24c1ff49: am 5b63c38d: Fix 2306814: Too aggressive suggesting names from my contacts list.

Merge commit '24c1ff4993734a1475d98a3456b8cbae4e16204e' into eclair-mr2-plus-aosp

* commit '24c1ff4993734a1475d98a3456b8cbae4e16204e':
  Fix 2306814: Too aggressive suggesting names from my contacts list.
main
Amith Yamasani 2009-12-09 15:47:15 -08:00 committed by Android Git Automerger
commit e10f56aeb1
1 changed files with 2 additions and 2 deletions

View File

@ -105,8 +105,8 @@ public class ExpandableDictionary extends Dictionary {
if (wordLength == depth + 1) {
// Terminate this word
childNode.terminal = true;
childNode.frequency += frequency; // If there are multiple similar words
if (childNode.frequency > 256) childNode.frequency = 256;
childNode.frequency = Math.max(frequency, childNode.frequency);
if (childNode.frequency > 255) childNode.frequency = 255;
return;
}
if (childNode.children == null) {