Skip to content

Commit

Permalink
Minor
Browse files Browse the repository at this point in the history
  • Loading branch information
rampaa committed Oct 31, 2024
1 parent 166f124 commit 6c89a36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion JL.Core/Lookup/LookupUtils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -619,7 +619,7 @@ private static Dictionary<string, IntermediaryResult> GetWordResults(List<string
GetWordResultsHelper(dict, results, deconjugationResultsList[i], textList[i], textInHiraganaList[i], dbWordDict, dbVerbDict);

List<string>? textWithoutLongVowelMark = textWithoutLongVowelMarkList?[i];
if (textWithoutLongVowelMark != null)
if (textWithoutLongVowelMark is not null)
{
Dictionary<string, IList<IDictRecord>>? dbWordDictForLongVowelConversion = useDB
? getRecordsFromDB!(dict.Name, textWithoutLongVowelMark, longVowelQueryOrParameters![i]!)
Expand Down

0 comments on commit 6c89a36

Please sign in to comment.