Skip to content

Commit 77e3497

Browse files
committed
rename variable
1 parent c7b56dc commit 77e3497

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

FlashpointSecurePlayer/FlashpointSecurePlayerGUI.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1464,10 +1464,10 @@ await ImportActiveXAsync(delegate (string text) {
14641464
}
14651465
}
14661466

1467-
string fullHTDOCSFilePath = null;
1467+
string htdocsFileFullPath = null;
14681468

14691469
try {
1470-
fullHTDOCSFilePath = Path.GetFullPath(htdocsFilePath);
1470+
htdocsFileFullPath = Path.GetFullPath(htdocsFilePath);
14711471
} catch (SecurityException ex) {
14721472
LogExceptionToLauncher(ex);
14731473
throw new TaskRequiresElevationException("Getting the Full Path to \"" + htdocsFilePath + "\" requires elevation.");
@@ -1479,12 +1479,12 @@ await ImportActiveXAsync(delegate (string text) {
14791479
throw new ArgumentException("The path \"" + htdocsFilePath + "\" is not supported.");
14801480
}
14811481

1482-
if (fullHTDOCSFilePath == null) {
1483-
fullHTDOCSFilePath = String.Empty;
1482+
if (htdocsFileFullPath == null) {
1483+
htdocsFileFullPath = String.Empty;
14841484
}
14851485

14861486
try {
1487-
htdocsFileDirectory = Path.GetDirectoryName(fullHTDOCSFilePath);
1487+
htdocsFileDirectory = Path.GetDirectoryName(htdocsFileFullPath);
14881488
} catch (ArgumentException ex) {
14891489
// fail silently?
14901490
LogExceptionToLauncher(ex);

0 commit comments

Comments
 (0)