You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are several places where Lucene uses Java's CodingErrorAction.REPORT to throw an exception on failing to decode data. The default in .NET's Encoding class is to use replacements rather than throw exceptions. We should review these usages to determine if we should be using DecoderFallback.ExceptionFallback in these places.
The text was updated successfully, but these errors were encountered:
Is there an existing issue for this?
Task description
There are several places where Lucene uses Java's
CodingErrorAction.REPORT
to throw an exception on failing to decode data. The default in .NET's Encoding class is to use replacements rather than throw exceptions. We should review these usages to determine if we should be usingDecoderFallback.ExceptionFallback
in these places.The text was updated successfully, but these errors were encountered: