From 6c89a3697a4d96c52e552aee087aa3397ecf9699 Mon Sep 17 00:00:00 2001 From: rampaa Date: Thu, 31 Oct 2024 20:19:27 +0300 Subject: [PATCH] Minor --- JL.Core/Lookup/LookupUtils.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/JL.Core/Lookup/LookupUtils.cs b/JL.Core/Lookup/LookupUtils.cs index 6732b8ba..9e6b0d22 100644 --- a/JL.Core/Lookup/LookupUtils.cs +++ b/JL.Core/Lookup/LookupUtils.cs @@ -619,7 +619,7 @@ private static Dictionary GetWordResults(List? textWithoutLongVowelMark = textWithoutLongVowelMarkList?[i]; - if (textWithoutLongVowelMark != null) + if (textWithoutLongVowelMark is not null) { Dictionary>? dbWordDictForLongVowelConversion = useDB ? getRecordsFromDB!(dict.Name, textWithoutLongVowelMark, longVowelQueryOrParameters![i]!)