aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common.Implementations/IO/WindowsFileSystem.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Common.Implementations/IO/WindowsFileSystem.cs')
-rw-r--r--MediaBrowser.Common.Implementations/IO/WindowsFileSystem.cs14
1 files changed, 0 insertions, 14 deletions
diff --git a/MediaBrowser.Common.Implementations/IO/WindowsFileSystem.cs b/MediaBrowser.Common.Implementations/IO/WindowsFileSystem.cs
deleted file mode 100644
index e8f8de8aef..0000000000
--- a/MediaBrowser.Common.Implementations/IO/WindowsFileSystem.cs
+++ /dev/null
@@ -1,14 +0,0 @@
-using Patterns.Logging;
-
-namespace MediaBrowser.Common.Implementations.IO
-{
- public class WindowsFileSystem : ManagedFileSystem
- {
- public WindowsFileSystem(ILogger logger)
- : base(logger, true, true)
- {
- AddShortcutHandler(new LnkShortcutHandler());
- EnableFileSystemRequestConcat = false;
- }
- }
-}