[ 
https://issues.apache.org/jira/browse/LUCENE-4310?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13436762#comment-13436762
 ] 

Robert Muir commented on LUCENE-4310:
-------------------------------------

Thanks: +1
                
> 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
>         Attachments: LUCENE-4310.patch, LUCENE-4310.patch
>
>
> 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: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org

Reply via email to