Skip to content

Commit

Permalink
Refactoring: renamed the CheckAndInstallUpdate() private method of th…
Browse files Browse the repository at this point in the history
…e FrmUpdate class to CheckAndInstallAppUpdate() to make its purpose clearer.
  • Loading branch information
xvitaly committed Jan 17, 2025
1 parent 45a8ccd commit cfb6b4a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/srcrepair/FrmUpdate.cs
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ private void InstallAppUpdate()
/// <summary>
/// Checks whether the update is available and attempts to install it.
/// </summary>
private void CheckAndInstallUpdate()
private void CheckAndInstallAppUpdate()
{
if (UpMan.CheckAppUpdate())
{
Expand Down Expand Up @@ -249,7 +249,7 @@ private void UP_Status_Click(object sender, EventArgs e)
{
if (IsCompleted)
{
CheckAndInstallUpdate();
CheckAndInstallAppUpdate();
}
else
{
Expand Down

0 comments on commit cfb6b4a

Please sign in to comment.