[
https://issues.apache.org/jira/browse/LUCENE-4310?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13436673#comment-13436673
]
Dawid Weiss commented on LUCENE-4310:
-------------------------------------
Thanks Mike!
> NormalizeCharMap.build creates utf32-keyed automaton and uses it with utf16
> keys
> --------------------------------------------------------------------------------
>
> Key: LUCENE-4310
> URL: https://issues.apache.org/jira/browse/LUCENE-4310
> Project: Lucene - Core
> Issue Type: Bug
> Reporter: Dawid Weiss
> Assignee: Michael McCandless
>
> NormalizeCharMap#build method is inconsistent with later use in
> MappingCharFilter
> {code}
> final org.apache.lucene.util.fst.Builder<CharsRef> builder = new
> org.apache.lucene.util.fst.Builder<CharsRef>(FST.INPUT_TYPE.BYTE2, outputs);
> final IntsRef scratch = new IntsRef();
> for(Map.Entry<String,String> ent : pendingPairs.entrySet()) {
> builder.add(Util.toUTF32(ent.getKey(), scratch),
> new CharsRef(ent.getValue()));
> {code}
> (note BYTE2 vs. toUTF32 later on).
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]