This is an automated email from the ASF dual-hosted git repository.
paulirwin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/lucenenet.git
The following commit(s) were added to refs/heads/master by this push:
new 18bd8bf46 BREAKING: Make ReusableStringReader internal (#1030)
18bd8bf46 is described below
commit 18bd8bf46a50eee8ee879301419f48c1e227820f
Author: Paul Irwin <[email protected]>
AuthorDate: Mon Nov 18 13:49:31 2024 -0700
BREAKING: Make ReusableStringReader internal (#1030)
---
src/Lucene.Net/Analysis/ReusableStringReader.cs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/Lucene.Net/Analysis/ReusableStringReader.cs
b/src/Lucene.Net/Analysis/ReusableStringReader.cs
index 05f119abd..4a17b38ef 100644
--- a/src/Lucene.Net/Analysis/ReusableStringReader.cs
+++ b/src/Lucene.Net/Analysis/ReusableStringReader.cs
@@ -22,7 +22,7 @@ namespace Lucene.Net.Analysis
/// <summary>
/// Internal class to enable reuse of the string reader by <see
cref="Analyzer.GetTokenStream(string, string)"/>
/// </summary>
- public sealed class ReusableStringReader : System.IO.TextReader
+ internal sealed class ReusableStringReader : System.IO.TextReader
{
private int pos = 0, size = 0;
private string s = null;