You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucenenet.apache.org by ar...@apache.org on 2009/11/06 22:09:29 UTC

svn commit: r833556 - /incubator/lucene.net/trunk/C#/src/Lucene.Net/Store/RAMInputStream.cs

Author: aroush
Date: Fri Nov  6 21:09:29 2009
New Revision: 833556

URL: http://svn.apache.org/viewvc?rev=833556&view=rev
Log:
Fixed JUnit test-cases for: TestCachingTokenFilter.cs

Modified:
    incubator/lucene.net/trunk/C#/src/Lucene.Net/Store/RAMInputStream.cs

Modified: incubator/lucene.net/trunk/C#/src/Lucene.Net/Store/RAMInputStream.cs
URL: http://svn.apache.org/viewvc/incubator/lucene.net/trunk/C%23/src/Lucene.Net/Store/RAMInputStream.cs?rev=833556&r1=833555&r2=833556&view=diff
==============================================================================
--- incubator/lucene.net/trunk/C#/src/Lucene.Net/Store/RAMInputStream.cs (original)
+++ incubator/lucene.net/trunk/C#/src/Lucene.Net/Store/RAMInputStream.cs Fri Nov  6 21:09:29 2009
@@ -133,11 +133,6 @@
 			bufferPosition = (int) (pos % BUFFER_SIZE);
 		}
 		
-		override public System.Object Clone()
-		{
-            System.Diagnostics.Debug.Fail("Port issue:", "Lets see if we need this");   // {{Aroush-2.9}}
-			return null;
-		}
 		static RAMInputStream()
 		{
 			BUFFER_SIZE = RAMOutputStream.BUFFER_SIZE;