aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/ServerApplicationPaths.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-04-04 15:34:50 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-04-04 15:34:50 -0400
commitcb6170712d78f02c511e0d25a1c17f3982805e2c (patch)
treeed0784aa86725c8ab1031023b25107bfe65fc466 /MediaBrowser.Server.Implementations/ServerApplicationPaths.cs
parentc45e152205d46669e7fa7e3cabf5956fc53e0448 (diff)
#74 - Subtitle font
Diffstat (limited to 'MediaBrowser.Server.Implementations/ServerApplicationPaths.cs')
-rw-r--r--MediaBrowser.Server.Implementations/ServerApplicationPaths.cs26
1 files changed, 0 insertions, 26 deletions
diff --git a/MediaBrowser.Server.Implementations/ServerApplicationPaths.cs b/MediaBrowser.Server.Implementations/ServerApplicationPaths.cs
index 429c893ca..0863e592b 100644
--- a/MediaBrowser.Server.Implementations/ServerApplicationPaths.cs
+++ b/MediaBrowser.Server.Implementations/ServerApplicationPaths.cs
@@ -321,32 +321,6 @@ namespace MediaBrowser.Server.Implementations
}
/// <summary>
- /// The _media tools path
- /// </summary>
- private string _mediaToolsPath;
- /// <summary>
- /// Gets the folder path to tools
- /// </summary>
- /// <value>The media tools path.</value>
- public string MediaToolsPath
- {
- get
- {
- if (_mediaToolsPath == null)
- {
- _mediaToolsPath = Path.Combine(ProgramDataPath, "MediaTools");
-
- if (!Directory.Exists(_mediaToolsPath))
- {
- Directory.CreateDirectory(_mediaToolsPath);
- }
- }
-
- return _mediaToolsPath;
- }
- }
-
- /// <summary>
/// The _images data path
/// </summary>
private string _downloadedImagesDataPath;