Skip to content

Commit

Permalink
Fix problem that suppressed homographs
Browse files Browse the repository at this point in the history
  • Loading branch information
jtmaxwell3 committed Oct 17, 2024
1 parent a8a20ba commit 0e38274
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SIL.Machine.Morphology.HermitCrab/Morpher.cs
Original file line number Diff line number Diff line change
Expand Up @@ -364,9 +364,9 @@ private IEnumerable<Word> LexicalGuess(Word input)
_traceManager.LexicalLookup(input.Stratum, input);
CharacterDefinitionTable table = input.Stratum.CharacterDefinitionTable;
IEnumerable<ShapeNode> shapeNodes = input.Shape.GetNodes(input.Range);
HashSet<string> shapeSet = new HashSet<string>();
foreach (RootAllomorph lexicalPattern in _lexicalPatterns)
{
HashSet<string> shapeSet = new HashSet<string>();
IEnumerable<ShapeNode> shapePattern = lexicalPattern.Segments.Shape.GetNodes(
lexicalPattern.Segments.Shape.Range
);
Expand Down

0 comments on commit 0e38274

Please sign in to comment.