Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
jtmaxwell3 committed Sep 27, 2024
1 parent fcb2c65 commit 4e19b3c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
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 @@ -523,7 +523,7 @@ private IEnumerable<string> GetShapeStrings(IList<ShapeNode> nodes, CharacterDef
found = true;
break;
}
}
}
if (!found)
uniqueStrReps.Add(strRep);
}
Expand Down
4 changes: 1 addition & 3 deletions src/SIL.Machine/Annotations/Annotation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -202,9 +202,7 @@ public bool ValueEquals(Annotation<TOffset> other)
if (!IsLeaf && !_children.ValueEquals(other._children))
return false;

return _fs.ValueEquals(other._fs)
&& _optional == other._optional
&& Range == other.Range;
return _fs.ValueEquals(other._fs) && _optional == other._optional && Range == other.Range;
}

public int GetFrozenHashCode()
Expand Down
2 changes: 1 addition & 1 deletion src/SIL.Machine/Annotations/ShapeNode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public Annotation<ShapeNode> Annotation
/// </summary>
public bool Iterative
{
get { return Annotation.Data != null; }
get { return Annotation.Data != null; }
set
{
if (value)
Expand Down

0 comments on commit 4e19b3c

Please sign in to comment.