File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 ) ;
You can’t perform that action at this time.
0 commit comments