Skip to content

Commit

Permalink
What is in a name?
Browse files Browse the repository at this point in the history
  • Loading branch information
dhoehna committed Sep 18, 2024
1 parent 36a9009 commit fc6fca5
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ private void SendTelemetryAndLogError(string operation, Exception ex)
_log.Error(ex, string.Empty);
}

private async Task CloneLocationNotAndFoundNotifyUserAsync()
private async Task ShowCloneLocationNotFoundDialogAsync()
{
// strings need to be localized
var cantFindRepositoryDialog = new ContentDialog()
Expand All @@ -419,7 +419,7 @@ private async Task CloneLocationNotAndFoundNotifyUserAsync()
}
catch (Exception ex)
{
SendTelemetryAndLogError(nameof(CloneLocationNotAndFoundNotifyUserAsync), ex);
SendTelemetryAndLogError(nameof(ShowCloneLocationNotFoundDialogAsync), ex);
}

// User will show DevHome where the repository is.
Expand All @@ -435,7 +435,7 @@ private async Task CloneLocationNotAndFoundNotifyUserAsync()
return;
}

var repository = GetRepositoryReportIfNull(nameof(CloneLocationNotAndFoundNotifyUserAsync));
var repository = GetRepositoryReportIfNull(nameof(ShowCloneLocationNotFoundDialogAsync));
if (repository == null)
{
return;
Expand Down Expand Up @@ -483,7 +483,7 @@ private async Task CheckCloneLocationNotifyUserIfNotFound()
if (!Directory.Exists(Path.GetFullPath(ClonePath)))
{
// Ask the user if they can point DevHome to the correct location
await CloneLocationNotAndFoundNotifyUserAsync();
await ShowCloneLocationNotFoundDialogAsync();
}
}
}

0 comments on commit fc6fca5

Please sign in to comment.