From 0858c69d089d728cfeadef28cf6ad5fb14e32256 Mon Sep 17 00:00:00 2001 From: Luke Date: Sat, 22 Nov 2014 11:59:44 -0500 Subject: [PATCH] removed dead code --- MediaBrowser.Server.Mac/MainWindow.cs | 35 ---- .../MainWindow.designer.cs | 17 -- MediaBrowser.Server.Mac/MainWindow.xib | 189 ------------------ .../MainWindowController.cs | 48 ----- 4 files changed, 289 deletions(-) delete mode 100644 MediaBrowser.Server.Mac/MainWindow.cs delete mode 100644 MediaBrowser.Server.Mac/MainWindow.designer.cs delete mode 100644 MediaBrowser.Server.Mac/MainWindow.xib delete mode 100644 MediaBrowser.Server.Mac/MainWindowController.cs diff --git a/MediaBrowser.Server.Mac/MainWindow.cs b/MediaBrowser.Server.Mac/MainWindow.cs deleted file mode 100644 index c32ba36d76..0000000000 --- a/MediaBrowser.Server.Mac/MainWindow.cs +++ /dev/null @@ -1,35 +0,0 @@ - -using System; -using System.Collections.Generic; -using System.Linq; -using MonoMac.Foundation; -using MonoMac.AppKit; - -namespace MediaBrowser.Server.Mac -{ - public partial class MainWindow : MonoMac.AppKit.NSWindow - { - #region Constructors - - // Called when created from unmanaged code - public MainWindow (IntPtr handle) : base (handle) - { - Initialize (); - } - - // Called when created directly from a XIB file - [Export ("initWithCoder:")] - public MainWindow (NSCoder coder) : base (coder) - { - Initialize (); - } - - // Shared initialization code - void Initialize () - { - } - - #endregion - } -} - diff --git a/MediaBrowser.Server.Mac/MainWindow.designer.cs b/MediaBrowser.Server.Mac/MainWindow.designer.cs deleted file mode 100644 index d353ce2a67..0000000000 --- a/MediaBrowser.Server.Mac/MainWindow.designer.cs +++ /dev/null @@ -1,17 +0,0 @@ - -namespace MediaBrowser.Server.Mac -{ - - // Should subclass MonoMac.AppKit.NSWindow - [MonoMac.Foundation.Register ("MainWindow")] - public partial class MainWindow - { - } - - // Should subclass MonoMac.AppKit.NSWindowController - [MonoMac.Foundation.Register ("MainWindowController")] - public partial class MainWindowController - { - } -} - diff --git a/MediaBrowser.Server.Mac/MainWindow.xib b/MediaBrowser.Server.Mac/MainWindow.xib deleted file mode 100644 index 02a8e2b038..0000000000 --- a/MediaBrowser.Server.Mac/MainWindow.xib +++ /dev/null @@ -1,189 +0,0 @@ - - - - 1060 - 10D573 - 762 - 1038.29 - 460.00 - - com.apple.InterfaceBuilder.CocoaPlugin - 762 - - - YES - - - - YES - com.apple.InterfaceBuilder.CocoaPlugin - - - YES - - YES - - - YES - - - - YES - - MainWindowController - - - FirstResponder - - - NSApplication - - - 15 - 2 - {{131, 74}, {606, 354}} - 611844096 - Window - MainWindow - - {1.79769e+308, 1.79769e+308} - - - 256 - {606, 354} - - - {{0, 0}, {1280, 778}} - {1.79769e+308, 1.79769e+308} - - - - - YES - - - window - - - - 6 - - - - - YES - - 0 - - - - - - -2 - - - File's Owner - - - -1 - - - First Responder - - - -3 - - - Application - - - 2 - - - YES - - - - - - 3 - - - - - - - YES - - YES - -1.IBPluginDependency - -2.IBPluginDependency - -3.IBPluginDependency - 2.IBEditorWindowLastContentRect - 2.IBPluginDependency - 2.IBWindowTemplateEditedContentRect - 2.NSWindowTemplate.visibleAtLaunch - 3.IBPluginDependency - - - YES - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - com.apple.InterfaceBuilder.CocoaPlugin - {{319, 371}, {606, 354}} - com.apple.InterfaceBuilder.CocoaPlugin - {{319, 371}, {606, 354}} - - com.apple.InterfaceBuilder.CocoaPlugin - - - - YES - - - YES - - - - - YES - - - YES - - - - 6 - - - - YES - - MainWindow - NSWindow - - IBUserSource - - - - - MainWindowController - NSWindowController - - IBUserSource - - - - - - 0 - IBCocoaFramework - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 - - - YES - - 3 - - diff --git a/MediaBrowser.Server.Mac/MainWindowController.cs b/MediaBrowser.Server.Mac/MainWindowController.cs deleted file mode 100644 index 46a73b282a..0000000000 --- a/MediaBrowser.Server.Mac/MainWindowController.cs +++ /dev/null @@ -1,48 +0,0 @@ - -using System; -using System.Collections.Generic; -using System.Linq; -using MonoMac.Foundation; -using MonoMac.AppKit; - -namespace MediaBrowser.Server.Mac -{ - public partial class MainWindowController : MonoMac.AppKit.NSWindowController - { - #region Constructors - - // Called when created from unmanaged code - public MainWindowController (IntPtr handle) : base (handle) - { - Initialize (); - } - - // Called when created directly from a XIB file - [Export ("initWithCoder:")] - public MainWindowController (NSCoder coder) : base (coder) - { - Initialize (); - } - - // Call to load from the XIB/NIB file - public MainWindowController () : base ("MainWindow") - { - Initialize (); - } - - // Shared initialization code - void Initialize () - { - } - - #endregion - - //strongly typed window accessor - public new MainWindow Window { - get { - return (MainWindow)base.Window; - } - } - } -} -