aboutsummaryrefslogtreecommitdiff
path: root/Emby.Common.Implementations/IO/WindowsFileSystem.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-11-12 23:33:51 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-11-12 23:33:51 -0500
commit95341c5c96059e4bd70f290ff05ae3abc9c49257 (patch)
tree720dfca45628aea49a0a554afa40cfa062121cd5 /Emby.Common.Implementations/IO/WindowsFileSystem.cs
parent3e06bda46b2569c1df47d9ab0c7a763dcf3b1451 (diff)
update .net core startup
Diffstat (limited to 'Emby.Common.Implementations/IO/WindowsFileSystem.cs')
-rw-r--r--Emby.Common.Implementations/IO/WindowsFileSystem.cs13
1 files changed, 0 insertions, 13 deletions
diff --git a/Emby.Common.Implementations/IO/WindowsFileSystem.cs b/Emby.Common.Implementations/IO/WindowsFileSystem.cs
deleted file mode 100644
index 3eafeb2f7..000000000
--- a/Emby.Common.Implementations/IO/WindowsFileSystem.cs
+++ /dev/null
@@ -1,13 +0,0 @@
-using MediaBrowser.Model.Logging;
-
-namespace Emby.Common.Implementations.IO
-{
- public class WindowsFileSystem : ManagedFileSystem
- {
- public WindowsFileSystem(ILogger logger)
- : base(logger, true, true)
- {
- EnableFileSystemRequestConcat = false;
- }
- }
-}