mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-27 22:57:09 -04:00
Replaced built-in valuetypes with language keywords.
This commit is contained in:
@@ -9,7 +9,7 @@ namespace NzbDrone.Core.Notifications.MediaBrowser
|
||||
{
|
||||
public interface IMediaBrowserService
|
||||
{
|
||||
void Notify(MediaBrowserSettings settings, String title, String message);
|
||||
void Notify(MediaBrowserSettings settings, string title, string message);
|
||||
void Update(MediaBrowserSettings settings, Series series);
|
||||
ValidationFailure Test(MediaBrowserSettings settings);
|
||||
}
|
||||
@@ -25,7 +25,7 @@ namespace NzbDrone.Core.Notifications.MediaBrowser
|
||||
_logger = logger;
|
||||
}
|
||||
|
||||
public void Notify(MediaBrowserSettings settings, String title, String message)
|
||||
public void Notify(MediaBrowserSettings settings, string title, string message)
|
||||
{
|
||||
_proxy.Notify(settings, title, message);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user