Skip to content

Commit

Permalink
Make ReusableStringReader internal
Browse files Browse the repository at this point in the history
  • Loading branch information
paulirwin committed Nov 18, 2024
1 parent b28fa34 commit e40728f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Lucene.Net/Analysis/ReusableStringReader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit e40728f

Please sign in to comment.