aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common.Implementations/IO/WindowsFileSystem.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-10-29 00:10:11 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-10-29 00:10:11 -0400
commitce38e987910b4badb4c40844786449458b2d3229 (patch)
treefda30efcbfd2ebd70bd8348f19e76a8941f67e40 /MediaBrowser.Common.Implementations/IO/WindowsFileSystem.cs
parent9c6da95d6a5dce333fb66a58d73f7655f3a4d6ce (diff)
move common dependencies
Diffstat (limited to 'MediaBrowser.Common.Implementations/IO/WindowsFileSystem.cs')
-rw-r--r--MediaBrowser.Common.Implementations/IO/WindowsFileSystem.cs3
1 files changed, 1 insertions, 2 deletions
diff --git a/MediaBrowser.Common.Implementations/IO/WindowsFileSystem.cs b/MediaBrowser.Common.Implementations/IO/WindowsFileSystem.cs
index e8f8de8ae..db386c682 100644
--- a/MediaBrowser.Common.Implementations/IO/WindowsFileSystem.cs
+++ b/MediaBrowser.Common.Implementations/IO/WindowsFileSystem.cs
@@ -1,4 +1,4 @@
-using Patterns.Logging;
+using MediaBrowser.Model.Logging;
namespace MediaBrowser.Common.Implementations.IO
{
@@ -7,7 +7,6 @@ namespace MediaBrowser.Common.Implementations.IO
public WindowsFileSystem(ILogger logger)
: base(logger, true, true)
{
- AddShortcutHandler(new LnkShortcutHandler());
EnableFileSystemRequestConcat = false;
}
}