Dawid Weiss created LUCENE-4310:
-----------------------------------

             Summary: 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


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