This is an automated email from the ASF dual-hosted git repository. nightowl888 pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/lucenenet.git
commit 26c8c6cf0ccbe4fe4e03484db4df1564a3b3c7bc Author: Shad Storhaug <[email protected]> AuthorDate: Mon May 3 07:35:09 2021 +0700 Lucene.Net.Index.ReadersAndUpdates: Changed to use BinaryDocValuesField.TYPE instead of BinaryDocValuesField.fType. --- src/Lucene.Net/Index/ReadersAndUpdates.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Lucene.Net/Index/ReadersAndUpdates.cs b/src/Lucene.Net/Index/ReadersAndUpdates.cs index ad0f5a8..6cd440a 100644 --- a/src/Lucene.Net/Index/ReadersAndUpdates.cs +++ b/src/Lucene.Net/Index/ReadersAndUpdates.cs @@ -512,7 +512,7 @@ namespace Lucene.Net.Index // create new fields or update existing ones to have BinaryDV type foreach (string f in dvUpdates.binaryDVUpdates.Keys) { - builder.AddOrUpdate(f, BinaryDocValuesField.fType); + builder.AddOrUpdate(f, BinaryDocValuesField.TYPE); } fieldInfos = builder.Finish();
