Skip to content

Commit 08b13c9

Browse files
committed
Simplify form title property assignment
Replaced `this.Text` with `Text` in the `UpdateGroupBoxTitle` method to simplify code. This change removes the explicit use of `this` while maintaining the same functionality.
1 parent 97a1319 commit 08b13c9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/SignToolGUI/Forms/TimestampServerManagementForm.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@ private void UpdateGroupBoxTitle()
3232
if (_isTrustedSigning)
3333
{
3434
groupBoxServers.Text = "Endpoints";
35-
this.Text = "Trusted Signing Endpoint Management";
35+
Text = "Trusted Signing Endpoint Management";
3636
}
3737
else
3838
{
3939
groupBoxServers.Text = "Timestamp Servers";
40-
this.Text = "Timestamp Server Management";
40+
Text = "Timestamp Server Management";
4141
}
4242
}
4343

0 commit comments

Comments
 (0)