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


The following commit(s) were added to refs/heads/master by this push:
     new 44c53364a BUG: Lucene.Net.Analysis.Cjk.CJKBigramFilter: Changed the 
value of ALL to set all flags (was 0xff instead of 0xffff). Fixes #657.
44c53364a is described below

commit 44c53364ad249f3909eb5fba284492d12981faa9
Author: Shad Storhaug <[email protected]>
AuthorDate: Wed Oct 19 09:16:01 2022 +0700

    BUG: Lucene.Net.Analysis.Cjk.CJKBigramFilter: Changed the value of ALL to 
set all flags (was 0xff instead of 0xffff). Fixes #657.
---
 src/Lucene.Net.Analysis.Common/Analysis/Cjk/CJKBigramFilter.cs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/Lucene.Net.Analysis.Common/Analysis/Cjk/CJKBigramFilter.cs 
b/src/Lucene.Net.Analysis.Common/Analysis/Cjk/CJKBigramFilter.cs
index 58dad0eca..3de2c2f88 100644
--- a/src/Lucene.Net.Analysis.Common/Analysis/Cjk/CJKBigramFilter.cs
+++ b/src/Lucene.Net.Analysis.Common/Analysis/Cjk/CJKBigramFilter.cs
@@ -1,4 +1,4 @@
-// Lucene version compatibility level 4.8.1
+// Lucene version compatibility level 4.8.1
 using J2N;
 using Lucene.Net.Analysis.Standard;
 using Lucene.Net.Analysis.TokenAttributes;
@@ -42,7 +42,7 @@ namespace Lucene.Net.Analysis.Cjk
         HANGUL = 8,
         /// <summary>
         /// bigram flag for all scripts </summary>
-        ALL = 0xff
+        ALL = 0xffff,
     }
 
     /// <summary>

Reply via email to