aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.UI/Configuration/UIApplicationPaths.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.UI/Configuration/UIApplicationPaths.cs')
-rw-r--r--MediaBrowser.UI/Configuration/UIApplicationPaths.cs37
1 files changed, 0 insertions, 37 deletions
diff --git a/MediaBrowser.UI/Configuration/UIApplicationPaths.cs b/MediaBrowser.UI/Configuration/UIApplicationPaths.cs
deleted file mode 100644
index 313c310d3..000000000
--- a/MediaBrowser.UI/Configuration/UIApplicationPaths.cs
+++ /dev/null
@@ -1,37 +0,0 @@
-using MediaBrowser.Common.Kernel;
-using System.IO;
-
-namespace MediaBrowser.UI.Configuration
-{
- /// <summary>
- /// Class UIApplicationPaths
- /// </summary>
- public class UIApplicationPaths : BaseApplicationPaths
- {
- /// <summary>
- /// The _remote image cache path
- /// </summary>
- private string _remoteImageCachePath;
- /// <summary>
- /// Gets the remote image cache path.
- /// </summary>
- /// <value>The remote image cache path.</value>
- public string RemoteImageCachePath
- {
- get
- {
- if (_remoteImageCachePath == null)
- {
- _remoteImageCachePath = Path.Combine(CachePath, "remote-images");
-
- if (!Directory.Exists(_remoteImageCachePath))
- {
- Directory.CreateDirectory(_remoteImageCachePath);
- }
- }
-
- return _remoteImageCachePath;
- }
- }
- }
-}