Skip to content

Commit 7c3f650

Browse files
committed
Remove redeclaration of s_tempHome (#1544)
1 parent baedd2a commit 7c3f650

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
@@ -995,7 +995,7 @@ private static string GetHomeOrCreateTempHome()
995995

996996
try
997997
{
998-
var s_tempHome = Path.Combine(Path.GetTempPath(), string.Format(CultureInfo.CurrentCulture, tempHomeFolderName, Environment.UserName));
998+
s_tempHome = Path.Combine(Path.GetTempPath(), string.Format(CultureInfo.CurrentCulture, tempHomeFolderName, Environment.UserName));
999999
Directory.CreateDirectory(s_tempHome);
10001000
}
10011001
catch (UnauthorizedAccessException)

0 commit comments

Comments
 (0)