You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucenenet.apache.org by ni...@apache.org on 2017/01/25 03:44:02 UTC

[18/50] [abbrv] lucenenet git commit: Lucene.Net.Tests.Core.Index.BinaryTokenStream.IByteTermAttribute: Added new keyword to BytesRef property because it hides a property with the same name in the base interface

Lucene.Net.Tests.Core.Index.BinaryTokenStream.IByteTermAttribute: Added new keyword to BytesRef property because it hides a property with the same name in the base interface


Project: http://git-wip-us.apache.org/repos/asf/lucenenet/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucenenet/commit/3bd0c902
Tree: http://git-wip-us.apache.org/repos/asf/lucenenet/tree/3bd0c902
Diff: http://git-wip-us.apache.org/repos/asf/lucenenet/diff/3bd0c902

Branch: refs/heads/api-work
Commit: 3bd0c902f7f1f69cdbccf59c0f6ae2b77f4d1c9b
Parents: c19abfe
Author: Shad Storhaug <sh...@shadstorhaug.com>
Authored: Wed Jan 25 05:09:05 2017 +0700
Committer: Shad Storhaug <sh...@shadstorhaug.com>
Committed: Wed Jan 25 09:34:47 2017 +0700

----------------------------------------------------------------------
 src/Lucene.Net.Tests/core/Index/BinaryTokenStream.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucenenet/blob/3bd0c902/src/Lucene.Net.Tests/core/Index/BinaryTokenStream.cs
----------------------------------------------------------------------
diff --git a/src/Lucene.Net.Tests/core/Index/BinaryTokenStream.cs b/src/Lucene.Net.Tests/core/Index/BinaryTokenStream.cs
index a78cdf8..cc1ead2 100644
--- a/src/Lucene.Net.Tests/core/Index/BinaryTokenStream.cs
+++ b/src/Lucene.Net.Tests/core/Index/BinaryTokenStream.cs
@@ -63,7 +63,7 @@ namespace Lucene.Net.Index
 
         public interface IByteTermAttribute : ITermToBytesRefAttribute
         {
-            BytesRef BytesRef { set; }
+            new BytesRef BytesRef { get; set; }
         }
 
         public class ByteTermAttribute : Attribute, IByteTermAttribute