Skip to content

Commit 2f5b798

Browse files
committed
Use expression bodies
1 parent 6888cc7 commit 2f5b798

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Rubberduck.Core/UI/CodeExplorer/CodeExplorerWindow.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ namespace Rubberduck.UI.CodeExplorer
99
public sealed partial class CodeExplorerWindow : UserControl, IDockableUserControl
1010
{
1111
private const string ClassId = "C5318B59-172F-417C-88E3-B377CDA2D809";
12-
string IDockableUserControl.ClassId { get { return ClassId; } }
13-
string IDockableUserControl.Caption { get { return CodeExplorerUI.CodeExplorerDockablePresenter_Caption; } }
12+
string IDockableUserControl.ClassId => ClassId;
13+
string IDockableUserControl.Caption => CodeExplorerUI.CodeExplorerDockablePresenter_Caption;
1414

1515
private CodeExplorerWindow()
1616
{

0 commit comments

Comments
 (0)