Skip to content

Commit

Permalink
Remove redundant parenthesis
Browse files Browse the repository at this point in the history
  • Loading branch information
IvenBach committed Jul 20, 2019
1 parent e28f779 commit 96f8eaa
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -165,7 +165,7 @@ private static TreeViewItem AsTreeViewItem(SingleAtomExpression expression)
// no other Atom has Subexpressions we care about
if (expression.Atom.GetType() == typeof(Group))
{
result.Items.Add(AsTreeViewItem((dynamic)((expression.Atom) as Group).Subexpression));
result.Items.Add(AsTreeViewItem((dynamic)(expression.Atom as Group).Subexpression));
}

return result;
Expand Down

0 comments on commit 96f8eaa

Please sign in to comment.