You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucenenet.apache.org by di...@apache.org on 2009/11/14 15:56:43 UTC

svn commit: r836186 - /incubator/lucene.net/trunk/C#/src/Test/Index/TestDocumentWriter.cs

Author: digy
Date: Sat Nov 14 14:56:43 2009
New Revision: 836186

URL: http://svn.apache.org/viewvc?rev=836186&view=rev
Log:
Parameterless constructor for TestDocumentWriter.cs

Modified:
    incubator/lucene.net/trunk/C#/src/Test/Index/TestDocumentWriter.cs

Modified: incubator/lucene.net/trunk/C#/src/Test/Index/TestDocumentWriter.cs
URL: http://svn.apache.org/viewvc/incubator/lucene.net/trunk/C%23/src/Test/Index/TestDocumentWriter.cs?rev=836186&r1=836185&r2=836186&view=diff
==============================================================================
--- incubator/lucene.net/trunk/C#/src/Test/Index/TestDocumentWriter.cs (original)
+++ incubator/lucene.net/trunk/C#/src/Test/Index/TestDocumentWriter.cs Sat Nov 14 14:56:43 2009
@@ -202,6 +202,10 @@
 		public TestDocumentWriter(System.String s):base(s)
 		{
 		}
+
+        public TestDocumentWriter() : base("")
+        {
+        }
 		
 		[SetUp]
 		public override void  SetUp()