Lucene.Net.Analysis.CharFilter.Close C# (CSharp) Method

Close() public method

Closes the underlying input stream.

NOTE: The default implementation closes the input Reader, so be sure to call super.close() when overriding this method.

public Close ( ) : void
return void
        public override void Close()
        {
            input.Close(); // LUCENENET TODO: Should probably remove this method and make a Dispose() instead.
        }