From 63a0d52fd115f3a4888acd53f9fd92defa9dc721 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Wed, 26 Nov 2014 15:57:16 -0500 Subject: allow separate configuration of app resources path --- .../BaseApplicationPaths.cs | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) (limited to 'MediaBrowser.Common.Implementations') diff --git a/MediaBrowser.Common.Implementations/BaseApplicationPaths.cs b/MediaBrowser.Common.Implementations/BaseApplicationPaths.cs index 2940f921c8..4ad63b2e3f 100644 --- a/MediaBrowser.Common.Implementations/BaseApplicationPaths.cs +++ b/MediaBrowser.Common.Implementations/BaseApplicationPaths.cs @@ -14,24 +14,12 @@ namespace MediaBrowser.Common.Implementations /// protected BaseApplicationPaths(string programDataPath, string applicationPath) { - _programDataPath = programDataPath; + ProgramDataPath = programDataPath; ApplicationPath = applicationPath; } public string ApplicationPath { get; private set; } - - /// - /// The _program data path - /// - private readonly string _programDataPath; - /// - /// Gets the path to the program data folder - /// - /// The program data path. - public string ProgramDataPath - { - get { return _programDataPath; } - } + public string ProgramDataPath { get; private set; } /// /// Gets the path to the system folder -- cgit v1.2.3