aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/Kernel/BaseApplicationPaths.cs
diff options
context:
space:
mode:
authorLukePulverenti Luke Pulverenti luke pulverenti <LukePulverenti Luke Pulverenti luke.pulverenti@gmail.com>2012-09-11 15:37:14 -0400
committerLukePulverenti Luke Pulverenti luke pulverenti <LukePulverenti Luke Pulverenti luke.pulverenti@gmail.com>2012-09-11 15:37:14 -0400
commitf1e668bad82ff591ed4135459c4f26ae500a4025 (patch)
tree4857d3c3a0fd110b3a5821fcb143168d40975669 /MediaBrowser.Common/Kernel/BaseApplicationPaths.cs
parent670a53258ef79ee92f578335577df4f768c9d7d4 (diff)
More code cleanups
Diffstat (limited to 'MediaBrowser.Common/Kernel/BaseApplicationPaths.cs')
-rw-r--r--MediaBrowser.Common/Kernel/BaseApplicationPaths.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/MediaBrowser.Common/Kernel/BaseApplicationPaths.cs b/MediaBrowser.Common/Kernel/BaseApplicationPaths.cs
index 798115ffa..fefbd354a 100644
--- a/MediaBrowser.Common/Kernel/BaseApplicationPaths.cs
+++ b/MediaBrowser.Common/Kernel/BaseApplicationPaths.cs
@@ -5,7 +5,7 @@ using System.Reflection;
namespace MediaBrowser.Common.Kernel
{
/// <summary>
- /// Provides a base class to hold common application paths used by both the UI and Server.
+ /// Provides a base class to hold common application paths used by both the Ui and Server.
/// This can be subclassed to add application-specific paths.
/// </summary>
public abstract class BaseApplicationPaths
@@ -22,6 +22,7 @@ namespace MediaBrowser.Common.Kernel
{
_programDataPath = GetProgramDataPath();
}
+
return _programDataPath;
}
}