Skip to content
Snippets Groups Projects
Commit 34a5c90e authored by Keisuke Kuroyanagi's avatar Keisuke Kuroyanagi Committed by Android (Google) Code Review
Browse files

Merge "Fix: PtNodeParams.representsNonWordInfo()"

parents c1442aa2 6600340a
No related branches found
No related tags found
No related merge requests found
......@@ -160,7 +160,7 @@ class PtNodeParams {
}
AK_FORCE_INLINE bool representsNonWordInfo() const {
return getCodePointCount() > 0 && CharUtils::isInUnicodeSpace(getCodePoints()[0])
return getCodePointCount() > 0 && !CharUtils::isInUnicodeSpace(getCodePoints()[0])
&& isNotAWord();
}
......
......@@ -61,7 +61,7 @@ void Ver4PatriciaTriePolicy::createAndGetAllChildDicNodes(const DicNode *const d
isTerminal = ptNodeParams.getProbability() != NOT_A_PROBABILITY;
}
readingHelper.readNextSiblingNode(ptNodeParams);
if (!ptNodeParams.representsNonWordInfo()) {
if (ptNodeParams.representsNonWordInfo()) {
// Skip PtNodes that represent non-word information.
continue;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment