Skip to content

Commit d7327ea

Browse files
committed
rename function to async
1 parent 7553864 commit d7327ea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

FlashpointSecurePlayer/FlashpointSecurePlayerGUI.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ private void AskLaunchWithOldCPUSimulator() {
385385
throw new InvalidModificationException("The Modification failed to launch with Old CPU Simulator.");
386386
}
387387

388-
private async Task<StringBuilder> GetHTDOCSFilePath(string url) {
388+
private async Task<StringBuilder> GetHTDOCSFilePathAsync(string url) {
389389
Uri requestUri = await DownloadAsync(GetValidatedURL(url)).ConfigureAwait(true);
390390

391391
StringBuilder htdocsFilePath = new StringBuilder(HTDOCS);
@@ -1447,7 +1447,7 @@ await ImportActiveXAsync(delegate (string text) {
14471447

14481448
if (templateElement.Mode.Name == ModeElement.NAME.SOFTWARE) {
14491449
try {
1450-
string htdocsFilePath = (await GetHTDOCSFilePath(URL).ConfigureAwait(true)).ToString();
1450+
string htdocsFilePath = (await GetHTDOCSFilePathAsync(URL).ConfigureAwait(true)).ToString();
14511451

14521452
try {
14531453
htdocsFile = Path.GetFileName(htdocsFilePath);

0 commit comments

Comments
 (0)