am 091ee762: Merge "Fix a bug ending in a NPE in some rare cases."

* commit '091ee76285593d4c2a638d1927016e5bdfceccfd':
  Fix a bug ending in a NPE in some rare cases.
main
Jean Chalard 2011-09-27 02:33:27 -07:00 committed by Android Git Automerger
commit 78e0af9ddd
1 changed files with 2 additions and 2 deletions

View File

@ -268,7 +268,7 @@ public class FusionDictionary implements Iterable<Word> {
+ new String(word, 0, word.length)); + new String(word, 0, word.length));
} }
final CharGroup newGroup = new CharGroup(word, final CharGroup newGroup = new CharGroup(word,
currentGroup.mBigrams, frequency); currentGroup.mBigrams, frequency, currentGroup.mChildren);
currentNode.mData.set(nodeIndex, newGroup); currentNode.mData.set(nodeIndex, newGroup);
} }
} else { } else {