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 2011/03/17 16:54:28 UTC

[Lucene.Net] svn commit: r1082539 - /incubator/lucene.net/trunk/C#/src/Test/Store/MockRAMDirectory.cs

Author: digy
Date: Thu Mar 17 15:54:27 2011
New Revision: 1082539

URL: http://svn.apache.org/viewvc?rev=1082539&view=rev
Log:
[LUCENENET-399] forgotten override's

Modified:
    incubator/lucene.net/trunk/C#/src/Test/Store/MockRAMDirectory.cs

Modified: incubator/lucene.net/trunk/C#/src/Test/Store/MockRAMDirectory.cs
URL: http://svn.apache.org/viewvc/incubator/lucene.net/trunk/C%23/src/Test/Store/MockRAMDirectory.cs?rev=1082539&r1=1082538&r2=1082539&view=diff
==============================================================================
--- incubator/lucene.net/trunk/C#/src/Test/Store/MockRAMDirectory.cs (original)
+++ incubator/lucene.net/trunk/C#/src/Test/Store/MockRAMDirectory.cs Thu Mar 17 15:54:27 2011
@@ -265,7 +265,7 @@ namespace Lucene.Net.Store
             }
         }
 
-        public IndexOutput CreateOutput(String name)
+        public override IndexOutput CreateOutput(String name)
         {
             lock (this)
             {
@@ -300,7 +300,7 @@ namespace Lucene.Net.Store
             }
         }
 
-        public IndexInput OpenInput(String name)
+        public override IndexInput OpenInput(String name)
         {
             lock (this)
             {
@@ -355,7 +355,7 @@ namespace Lucene.Net.Store
             }
         }
 
-        public void Close()
+        public override void Close()
         {
             lock (this)
             {