TestASCIIFoldingFilter (2.9.0)
------------------------------
Key: LUCENENET-205
URL: https://issues.apache.org/jira/browse/LUCENENET-205
Project: Lucene.Net
Issue Type: Bug
Environment: 2.9.0
Reporter: Digy
Priority: Minor
There is a small bug in CharReader
--System.IO.MemoryStream theString = new
System.IO.MemoryStream(System.Text.Encoding.ASCII.GetBytes(input.ReadToEnd()));
++System.IO.MemoryStream theString = new
System.IO.MemoryStream(System.Text.Encoding.UTF8.GetBytes(input.ReadToEnd()));
+
All of the strings in TestASCIIFoldingFilter are replaced with the ones in
original Lucene.Java 2.9.0
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.