Skip to content

Commit aa7ebb2

Browse files
committed
Remove redundant parenthesis
1 parent 351fc69 commit aa7ebb2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Rubberduck.Core/UI/RegexAssistant/RegexAssistantViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ private static TreeViewItem AsTreeViewItem(SingleAtomExpression expression)
176176
// no other Atom has Subexpressions we care about
177177
if (expression.Atom.GetType() == typeof(Group))
178178
{
179-
result.Items.Add(AsTreeViewItem((dynamic)((expression.Atom) as Group).Subexpression));
179+
result.Items.Add(AsTreeViewItem((dynamic)(expression.Atom as Group).Subexpression));
180180
}
181181

182182
return result;

0 commit comments

Comments
 (0)