We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfae507 commit f5aeb88Copy full SHA for f5aeb88
src/SIL.Machine.Morphology.HermitCrab/Morpher.cs
@@ -565,13 +565,12 @@ private bool IsWordValid(Word word)
565
return false;
566
}
567
568
- Feature feature = word.ObligatorySyntacticFeatures.FirstOrDefault(
569
- f =>
570
- !ContainsFeature(
571
- word.SyntacticFeatureStruct,
572
- f,
573
- new HashSet<FeatureStruct>(new ReferenceEqualityComparer<FeatureStruct>())
574
- )
+ Feature feature = word.ObligatorySyntacticFeatures.FirstOrDefault(f =>
+ !ContainsFeature(
+ word.SyntacticFeatureStruct,
+ f,
+ new HashSet<FeatureStruct>(new ReferenceEqualityComparer<FeatureStruct>())
+ )
575
);
576
if (feature != null)
577
{
0 commit comments