Lucene.Net.Search.TestTermRangeQuery.AddDoc C# (CSharp) Method

AddDoc() private method

private AddDoc ( System content ) : void
content System
return void
		private void  AddDoc(System.String content)
		{
			IndexWriter writer = new IndexWriter(dir, new WhitespaceAnalyzer(), false, IndexWriter.MaxFieldLength.LIMITED);
			InsertDoc(writer, content);
			writer.Close();
		}