aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.ServerApplication/App.xaml.cs
diff options
context:
space:
mode:
authorLukePulverenti <luke.pulverenti@gmail.com>2013-02-20 23:37:50 -0500
committerLukePulverenti <luke.pulverenti@gmail.com>2013-02-20 23:37:50 -0500
commita5f9dc1bfc6c8d37f915d2ea33e495013bd83ba5 (patch)
tree960cabedfbd07fe4eac3503e99f8bab745db58e2 /MediaBrowser.ServerApplication/App.xaml.cs
parent509156cbc3497ff8daabefd3dba843f5b085701a (diff)
isolated sqlite dependancy
Diffstat (limited to 'MediaBrowser.ServerApplication/App.xaml.cs')
-rw-r--r--MediaBrowser.ServerApplication/App.xaml.cs12
1 files changed, 1 insertions, 11 deletions
diff --git a/MediaBrowser.ServerApplication/App.xaml.cs b/MediaBrowser.ServerApplication/App.xaml.cs
index 387ae9577..487b60485 100644
--- a/MediaBrowser.ServerApplication/App.xaml.cs
+++ b/MediaBrowser.ServerApplication/App.xaml.cs
@@ -76,16 +76,6 @@ namespace MediaBrowser.ServerApplication
}
/// <summary>
- /// Instantiates the iso manager.
- /// </summary>
- /// <param name="kernel">The kernel.</param>
- /// <returns>IIsoManager.</returns>
- protected override IIsoManager InstantiateIsoManager(IKernel kernel)
- {
- return new IsoManager(kernel);
- }
-
- /// <summary>
/// Called when [second instance launched].
/// </summary>
/// <param name="args">The args.</param>
@@ -180,7 +170,7 @@ namespace MediaBrowser.ServerApplication
/// <returns>IKernel.</returns>
protected override IKernel InstantiateKernel()
{
- return new Kernel();
+ return new Kernel(new PismoIsoManager());
}
/// <summary>