From 62beec148ee435cf964d8e4f4d0c273f893c8b86 Mon Sep 17 00:00:00 2001 From: John Maxwell Date: Fri, 27 Sep 2024 14:14:17 -0700 Subject: [PATCH] Fix formatting --- src/SIL.Machine.Morphology.HermitCrab/RootAllomorph.cs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/SIL.Machine.Morphology.HermitCrab/RootAllomorph.cs b/src/SIL.Machine.Morphology.HermitCrab/RootAllomorph.cs index d2f9868e..6d1544ae 100644 --- a/src/SIL.Machine.Morphology.HermitCrab/RootAllomorph.cs +++ b/src/SIL.Machine.Morphology.HermitCrab/RootAllomorph.cs @@ -18,10 +18,7 @@ public RootAllomorph(Segments segments) _segments = segments; foreach (ShapeNode node in _segments.Shape.GetNodes(_segments.Shape.Range)) { - if ( - node.Iterative - || (node.Annotation.Optional && node.Annotation.Type() != HCFeatureSystem.Boundary) - ) + if (node.Iterative || (node.Annotation.Optional && node.Annotation.Type() != HCFeatureSystem.Boundary)) { IsPattern = true; }