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 a2fac85f11f1ce494e90ef28256013941b6977f7
Author: rafael-aero <[email protected]>
AuthorDate: Mon Sep 21 18:48:37 2020 +0200

    mark new fields as private
---
 src/Lucene.Net/Search/FieldCacheImpl.cs | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/src/Lucene.Net/Search/FieldCacheImpl.cs 
b/src/Lucene.Net/Search/FieldCacheImpl.cs
index 6f89624..80749ae 100644
--- a/src/Lucene.Net/Search/FieldCacheImpl.cs
+++ b/src/Lucene.Net/Search/FieldCacheImpl.cs
@@ -58,16 +58,16 @@ namespace Lucene.Net.Search
     /// </summary>
     internal class FieldCacheImpl : IFieldCache
     {
-        Cache caches_typeof_sbyte;
-        Cache caches_typeof_short;
-        Cache caches_typeof_int;
-        Cache caches_typeof_float;
-        Cache caches_typeof_long;
-        Cache caches_typeof_double;
-        Cache caches_typeof_BinaryDocValues;
-        Cache caches_typeof_SortedDocValues;
-        Cache caches_typeof_DocTermOrds;
-        Cache caches_typeof_DocsWithFieldCache;
+        private Cache caches_typeof_sbyte;
+        private Cache caches_typeof_short;
+        private Cache caches_typeof_int;
+        private Cache caches_typeof_float;
+        private Cache caches_typeof_long;
+        private Cache caches_typeof_double;
+        private Cache caches_typeof_BinaryDocValues;
+        private Cache caches_typeof_SortedDocValues;
+        private Cache caches_typeof_DocTermOrds;
+        private Cache caches_typeof_DocsWithFieldCache;
         internal FieldCacheImpl()
         {
             Init();

Reply via email to