Skip to content

Commit b56ebfb

Browse files
committed
Use compound assignment
1 parent 0e86931 commit b56ebfb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/StructuredLogViewer/Controls/BuildControl.xaml.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2043,7 +2043,7 @@ private void CopyAll(TreeView tree = null)
20432043

20442044
private void CopyPaths(TreeView tree = null)
20452045
{
2046-
tree = tree ?? ActiveTreeView;
2046+
tree ??= ActiveTreeView;
20472047
if (tree == null)
20482048
{
20492049
return;

0 commit comments

Comments
 (0)