diff options
Diffstat (limited to 'MediaBrowser.Server.Mac/Native/BaseMonoApp.cs')
| -rw-r--r-- | MediaBrowser.Server.Mac/Native/BaseMonoApp.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/MediaBrowser.Server.Mac/Native/BaseMonoApp.cs b/MediaBrowser.Server.Mac/Native/BaseMonoApp.cs index 9821f49dd..57610dfc2 100644 --- a/MediaBrowser.Server.Mac/Native/BaseMonoApp.cs +++ b/MediaBrowser.Server.Mac/Native/BaseMonoApp.cs @@ -19,16 +19,16 @@ namespace MediaBrowser.Server.Mac /// <summary> /// Restarts this instance. /// </summary> - public void Restart() + public virtual void Restart() { - + throw new NotImplementedException(); } /// <summary> /// Determines whether this instance [can self restart]. /// </summary> /// <returns><c>true</c> if this instance [can self restart]; otherwise, <c>false</c>.</returns> - public bool CanSelfRestart + public virtual bool CanSelfRestart { get { |
