Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit 0268cb8

Browse files
committed
Merge pull request #2795 from dotnet-bot/from-tfs
Merge changes from TFS
2 parents 9c55364 + 0d0c501 commit 0268cb8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/System.IO.FileSystem/src/System/IO/MultiplexingWin32WinRTFileSystem.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ internal class MultiplexingWin32WinRTFileSystem : FileSystem
1414

1515
internal static IFileSystemObject GetFileSystemObject(FileSystemInfo caller, string fullPath)
1616
{
17-
return ShouldUseWinRT(sourceFullPath, isCreate: false) ?
18-
(IFileSystemObject)new WinRTFileSystemObject(fullPath, asDirectory: caller is DirectoryInfo) :
17+
return ShouldUseWinRT(fullPath, isCreate: false) ?
18+
(IFileSystemObject)new WinRTFileSystem.WinRTFileSystemObject(fullPath, asDirectory: caller is DirectoryInfo) :
1919
(IFileSystemObject)caller;
2020
}
2121

0 commit comments

Comments
 (0)