From cb39f8e7b5f71dcf0de2681d953b016e29adbc54 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Sun, 7 Apr 2013 16:55:05 -0400 Subject: extracted a media encoding interface to keep ffmpeg out of nuget packages --- MediaBrowser.Common/IO/FileSystemRepository.cs | 21 +-------------------- 1 file changed, 1 insertion(+), 20 deletions(-) (limited to 'MediaBrowser.Common/IO/FileSystemRepository.cs') diff --git a/MediaBrowser.Common/IO/FileSystemRepository.cs b/MediaBrowser.Common/IO/FileSystemRepository.cs index 3a4987a94..f2fa8ce54 100644 --- a/MediaBrowser.Common/IO/FileSystemRepository.cs +++ b/MediaBrowser.Common/IO/FileSystemRepository.cs @@ -9,7 +9,7 @@ namespace MediaBrowser.Common.IO /// This is a wrapper for storing large numbers of files within a directory on a file system. /// Simply pass a filename into GetResourcePath and it will return a full path location of where the file should be stored. /// - public class FileSystemRepository : IDisposable + public class FileSystemRepository { /// /// Contains the list of subfolders under the main directory @@ -163,24 +163,5 @@ namespace MediaBrowser.Common.IO return File.Exists(path); } - - /// - /// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. - /// - public void Dispose() - { - Dispose(true); - } - - /// - /// Releases unmanaged and - optionally - managed resources. - /// - /// true to release both managed and unmanaged resources; false to release only unmanaged resources. - protected virtual void Dispose(bool dispose) - { - if (dispose) - { - } - } } } -- cgit v1.2.3