diff options
| author | Luke <luke.pulverenti@gmail.com> | 2016-11-25 17:15:15 -0500 |
|---|---|---|
| committer | Luke <luke.pulverenti@gmail.com> | 2016-11-25 17:15:15 -0500 |
| commit | 67e546eca1cfa404ca6ab7f75289fce40b85d084 (patch) | |
| tree | 22fd96ade17a5bdf8c1e2330517de247d8689d10 | |
| parent | d54c11fb747e3cf0369ddade42c93d7e795f5a4f (diff) | |
update mac project
| -rw-r--r-- | MediaBrowser.Server.Mac/MacAppHost.cs | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/MediaBrowser.Server.Mac/MacAppHost.cs b/MediaBrowser.Server.Mac/MacAppHost.cs index 78bca03c8..11a1ff59d 100644 --- a/MediaBrowser.Server.Mac/MacAppHost.cs +++ b/MediaBrowser.Server.Mac/MacAppHost.cs @@ -107,28 +107,6 @@ namespace MediaBrowser.Server.Mac throw new NotImplementedException(); } - public override void LaunchUrl(string url) - { - var process = new Process - { - StartInfo = new ProcessStartInfo - { - FileName = url - }, - - EnableRaisingEvents = true, - }; - - process.Exited += ProcessExited; - - process.Start(); - } - - private static void ProcessExited(object sender, EventArgs e) - { - ((Process)sender).Dispose(); - } - protected override void EnableLoopbackInternal(string appName) { } |
