Skip to content

Commit 8d5ecc9

Browse files
committed
Replace with string.Empty
1 parent 5b98d30 commit 8d5ecc9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Rubberduck.Core/UI/Controls/SearchBox.xaml.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,12 @@ public string Hint
5454
}
5555
}
5656

57-
public ICommand ClearSearchCommand => new DelegateCommand(LogManager.GetCurrentClassLogger(), (arg) => Text = "");
57+
public ICommand ClearSearchCommand => new DelegateCommand(LogManager.GetCurrentClassLogger(), (arg) => Text = string.Empty);
5858

5959
public SearchBox()
6060
{
6161
// design instance!
62-
Text = "";
62+
Text = string.Empty;
6363
Hint = "Search";
6464
Width = 300;
6565
Height = 25;

0 commit comments

Comments
 (0)