aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.ServerApplication/IO/FileSystemFactory.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-10-06 19:58:46 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-10-06 19:58:46 -0400
commitf02f3222085311b2a2cacab6642ad987a4176e65 (patch)
tree9f317e5a3f087d4b4c5e523a8d8552d7d248567e /MediaBrowser.ServerApplication/IO/FileSystemFactory.cs
parenta9eed234ba2a366fe014f0cc6f462c3764528948 (diff)
remove mono compiler directives
Diffstat (limited to 'MediaBrowser.ServerApplication/IO/FileSystemFactory.cs')
-rw-r--r--MediaBrowser.ServerApplication/IO/FileSystemFactory.cs21
1 files changed, 0 insertions, 21 deletions
diff --git a/MediaBrowser.ServerApplication/IO/FileSystemFactory.cs b/MediaBrowser.ServerApplication/IO/FileSystemFactory.cs
deleted file mode 100644
index 698c4b616..000000000
--- a/MediaBrowser.ServerApplication/IO/FileSystemFactory.cs
+++ /dev/null
@@ -1,21 +0,0 @@
-using MediaBrowser.Common.IO;
-using MediaBrowser.Controller.IO;
-using MediaBrowser.Model.Logging;
-
-namespace MediaBrowser.ServerApplication.IO
-{
- /// <summary>
- /// Class FileSystemFactory
- /// </summary>
- public static class FileSystemFactory
- {
- /// <summary>
- /// Creates the file system manager.
- /// </summary>
- /// <returns>IFileSystem.</returns>
- public static IFileSystem CreateFileSystemManager(ILogManager logManager)
- {
- return new NativeFileSystem(logManager.GetLogger("FileSystem"));
- }
- }
-}