Browse Source

update mac project

Luke 8 years ago
parent
commit
67e546eca1
1 changed files with 0 additions and 22 deletions
  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();
         }
 
-        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)
         {
         }