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:58:29 UTC

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

Author: digy
Date: Sat Nov 14 14:58:29 2009
New Revision: 836187

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

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

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