Lucene.Net.Core.Document.FieldType: Removed original DocValuesType() method (it was commented out)
Project: http://git-wip-us.apache.org/repos/asf/lucenenet/repo Commit: http://git-wip-us.apache.org/repos/asf/lucenenet/commit/a058867c Tree: http://git-wip-us.apache.org/repos/asf/lucenenet/tree/a058867c Diff: http://git-wip-us.apache.org/repos/asf/lucenenet/diff/a058867c Branch: refs/heads/api-work Commit: a058867c55788d026827d8c92bcc157eca0072f1 Parents: 3ab9eaa Author: Shad Storhaug <[email protected]> Authored: Wed Mar 1 22:54:36 2017 +0700 Committer: Shad Storhaug <[email protected]> Committed: Thu Mar 2 08:08:44 2017 +0700 ---------------------------------------------------------------------- src/Lucene.Net.Core/Document/FieldType.cs | 11 ----------- 1 file changed, 11 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucenenet/blob/a058867c/src/Lucene.Net.Core/Document/FieldType.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net.Core/Document/FieldType.cs b/src/Lucene.Net.Core/Document/FieldType.cs index 24bbc6f..c67c5b5 100644 --- a/src/Lucene.Net.Core/Document/FieldType.cs +++ b/src/Lucene.Net.Core/Document/FieldType.cs @@ -366,17 +366,6 @@ namespace Lucene.Net.Documents return result.ToString(); } - // LUCENENET TODO: Cleanup - /// <summary> - /// {@inheritDoc} - /// <p> - /// The default is <code>null</code> (no docValues) </summary> - /// <seealso cref= #setDocValueType(Lucene.Net.Index.FieldInfo.DocValuesType) </seealso> - /*public override DocValuesType DocValueType() - { - return DocValueType_Renamed; - }*/ - /// <summary> /// Set's the field's DocValuesType </summary> /// <param name="type"> DocValues type, or null if no DocValues should be stored. </param>
