Skip to content

Commit

Permalink
Remove redundant parentheses
Browse files Browse the repository at this point in the history
  • Loading branch information
ledoge committed Nov 13, 2021
1 parent 42fbd68 commit 0dc3798
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DwmLutGUI/DwmLutGUI/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ private static string BrowseLuts()

var result = dlg.ShowDialog();

return (result == true) ? dlg.FileName : null;
return result == true ? dlg.FileName : null;
}

private void MonitorRefreshButton_Click(object sender, System.Windows.RoutedEventArgs e)
Expand Down

0 comments on commit 0dc3798

Please sign in to comment.