Skip to content

Commit 0a6c596

Browse files
authored
Remove redeclaration of s_tempHome (#1544)
1 parent 11b9d5d commit 0a6c596

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/code/Utils.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1067,7 +1067,7 @@ private static string GetHomeOrCreateTempHome()
10671067

10681068
try
10691069
{
1070-
var s_tempHome = Path.Combine(Path.GetTempPath(), string.Format(CultureInfo.CurrentCulture, tempHomeFolderName, Environment.UserName));
1070+
s_tempHome = Path.Combine(Path.GetTempPath(), string.Format(CultureInfo.CurrentCulture, tempHomeFolderName, Environment.UserName));
10711071
Directory.CreateDirectory(s_tempHome);
10721072
}
10731073
catch (UnauthorizedAccessException)

0 commit comments

Comments
 (0)