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:43:59 UTC

[15/50] [abbrv] lucenenet git commit: Lucene.Net.Tests.Core.Analysis.TrivialLookaheadFilter: added new keyword on private variables because they conflict with protected variables of base class.

Lucene.Net.Tests.Core.Analysis.TrivialLookaheadFilter: added new keyword on private variables because they conflict with protected variables of base class.


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

Branch: refs/heads/api-work
Commit: 5e39a91c7fa44f1f2fd3f64c88d8470103133337
Parents: 974fd48
Author: Shad Storhaug <sh...@shadstorhaug.com>
Authored: Wed Jan 25 03:14:49 2017 +0700
Committer: Shad Storhaug <sh...@shadstorhaug.com>
Committed: Wed Jan 25 09:34:46 2017 +0700

----------------------------------------------------------------------
 src/Lucene.Net.Tests/core/Analysis/TrivialLookaheadFilter.cs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucenenet/blob/5e39a91c/src/Lucene.Net.Tests/core/Analysis/TrivialLookaheadFilter.cs
----------------------------------------------------------------------
diff --git a/src/Lucene.Net.Tests/core/Analysis/TrivialLookaheadFilter.cs b/src/Lucene.Net.Tests/core/Analysis/TrivialLookaheadFilter.cs
index e449938..b422026 100644
--- a/src/Lucene.Net.Tests/core/Analysis/TrivialLookaheadFilter.cs
+++ b/src/Lucene.Net.Tests/core/Analysis/TrivialLookaheadFilter.cs
@@ -26,8 +26,8 @@ namespace Lucene.Net.Analysis
     public sealed class TrivialLookaheadFilter : LookaheadTokenFilter<TestPosition>
     {
         private readonly ICharTermAttribute TermAtt;
-        private readonly IPositionIncrementAttribute PosIncAtt;
-        private readonly IOffsetAttribute OffsetAtt;
+        new private readonly IPositionIncrementAttribute PosIncAtt;
+        new private readonly IOffsetAttribute OffsetAtt;
 
         private int InsertUpto;