Просмотр исходного кода

Merge branch 'dev' of https://github.com/MediaBrowser/Emby into dev

Luke Pulverenti 8 лет назад
Родитель
Сommit
75c71df295
1 измененных файлов с 0 добавлено и 22 удалено
  1. 0 22
      MediaBrowser.Server.Mac/MacAppHost.cs

+ 0 - 22
MediaBrowser.Server.Mac/MacAppHost.cs

@@ -107,28 +107,6 @@ namespace MediaBrowser.Server.Mac
             throw new NotImplementedException();
             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)
         protected override void EnableLoopbackInternal(string appName)
         {
         {
         }
         }