diff options
| author | LukePulverenti Luke Pulverenti luke pulverenti <LukePulverenti Luke Pulverenti luke.pulverenti@gmail.com> | 2012-09-11 15:37:14 -0400 |
|---|---|---|
| committer | LukePulverenti Luke Pulverenti luke pulverenti <LukePulverenti Luke Pulverenti luke.pulverenti@gmail.com> | 2012-09-11 15:37:14 -0400 |
| commit | f1e668bad82ff591ed4135459c4f26ae500a4025 (patch) | |
| tree | 4857d3c3a0fd110b3a5821fcb143168d40975669 /MediaBrowser.Common/Kernel | |
| parent | 670a53258ef79ee92f578335577df4f768c9d7d4 (diff) | |
More code cleanups
Diffstat (limited to 'MediaBrowser.Common/Kernel')
| -rw-r--r-- | MediaBrowser.Common/Kernel/BaseApplicationPaths.cs | 3 | ||||
| -rw-r--r-- | MediaBrowser.Common/Kernel/BaseKernel.cs | 6 | ||||
| -rw-r--r-- | MediaBrowser.Common/Kernel/KernelContext.cs | 2 |
3 files changed, 6 insertions, 5 deletions
diff --git a/MediaBrowser.Common/Kernel/BaseApplicationPaths.cs b/MediaBrowser.Common/Kernel/BaseApplicationPaths.cs index 798115ffaa..fefbd354a1 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;
}
}
diff --git a/MediaBrowser.Common/Kernel/BaseKernel.cs b/MediaBrowser.Common/Kernel/BaseKernel.cs index 7f484acaa6..266671f4bb 100644 --- a/MediaBrowser.Common/Kernel/BaseKernel.cs +++ b/MediaBrowser.Common/Kernel/BaseKernel.cs @@ -18,7 +18,7 @@ using System.Threading.Tasks; namespace MediaBrowser.Common.Kernel
{
/// <summary>
- /// Represents a shared base kernel for both the UI and server apps
+ /// Represents a shared base kernel for both the Ui and server apps
/// </summary>
public abstract class BaseKernel<TConfigurationType, TApplicationPathsType> : IDisposable, IKernel
where TConfigurationType : BaseApplicationConfiguration, new()
@@ -44,8 +44,8 @@ namespace MediaBrowser.Common.Kernel private IEnumerable<BaseHandler> HttpHandlers { get; set; }
/// <summary>
- /// Both the UI and server will have a built-in HttpServer.
- /// People will inevitably want remote control apps so it's needed in the UI too.
+ /// Both the Ui and server will have a built-in HttpServer.
+ /// People will inevitably want remote control apps so it's needed in the Ui too.
/// </summary>
public HttpServer HttpServer { get; private set; }
diff --git a/MediaBrowser.Common/Kernel/KernelContext.cs b/MediaBrowser.Common/Kernel/KernelContext.cs index 6aa1e83bdf..4d13ebb7b0 100644 --- a/MediaBrowser.Common/Kernel/KernelContext.cs +++ b/MediaBrowser.Common/Kernel/KernelContext.cs @@ -4,6 +4,6 @@ namespace MediaBrowser.Common.Kernel public enum KernelContext
{
Server,
- UI
+ Ui
}
}
|
