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:19 UTC

[35/50] [abbrv] lucenenet git commit: Lucene.Net.Tests.Grouping.DistinctValuesCollectorTest: Commented unused fields (that were also unused in Lucene)

Lucene.Net.Tests.Grouping.DistinctValuesCollectorTest: Commented unused fields (that were also unused in Lucene)


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

Branch: refs/heads/api-work
Commit: 0326cc9cec40e26adafafd4bf20bba38f6e3117f
Parents: aaff582
Author: Shad Storhaug <sh...@shadstorhaug.com>
Authored: Wed Jan 25 06:23:02 2017 +0700
Committer: Shad Storhaug <sh...@shadstorhaug.com>
Committed: Wed Jan 25 09:34:48 2017 +0700

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


http://git-wip-us.apache.org/repos/asf/lucenenet/blob/0326cc9c/src/Lucene.Net.Tests.Grouping/DistinctValuesCollectorTest.cs
----------------------------------------------------------------------
diff --git a/src/Lucene.Net.Tests.Grouping/DistinctValuesCollectorTest.cs b/src/Lucene.Net.Tests.Grouping/DistinctValuesCollectorTest.cs
index 3f9e7d1..c481373 100644
--- a/src/Lucene.Net.Tests.Grouping/DistinctValuesCollectorTest.cs
+++ b/src/Lucene.Net.Tests.Grouping/DistinctValuesCollectorTest.cs
@@ -40,9 +40,9 @@ namespace Lucene.Net.Search.Grouping
         private readonly static NullComparer nullComparer = new NullComparer();
 
         private readonly string groupField = "author";
-        private readonly string dvGroupField = "author_dv";
+        //private readonly string dvGroupField = "author_dv"; // LUCENENET NOTE: Not used in Lucene
         private readonly string countField = "publisher";
-        private readonly string dvCountField = "publisher_dv";
+        //private readonly string dvCountField = "publisher_dv"; // LUCENENET NOTE: Not used in Lucene
 
         internal class ComparerAnonymousHelper1 : IComparer<AbstractDistinctValuesCollector.IGroupCount<IComparable>>
         {