Lucene.Net.Index.IndexWriter.CommitTransaction C# (CSharp) Method

CommitTransaction() private method

private CommitTransaction ( ) : void
return void
		private void  CommitTransaction()
		{
			lock (this)
			{
				
				if (infoStream != null)
					Message("now commit transaction");
				
				// Give deleter a chance to remove files now:
				Checkpoint();
				
				// Remove the incRef we did in startTransaction.
                deleter.DecRef(localRollbackSegmentInfos);
				
				localRollbackSegmentInfos = null;
				
				System.Diagnostics.Debug.Assert(!HasExternalSegments());
				
				FinishAddIndexes();
			}
		}
		
IndexWriter