diff options
| author | Bond_009 <bond.009@outlook.com> | 2021-05-07 00:39:20 +0200 |
|---|---|---|
| committer | Bond_009 <bond.009@outlook.com> | 2021-05-07 00:39:20 +0200 |
| commit | fb090df0b59b71d7f143d2181d46f18943bbc35e (patch) | |
| tree | cba62fbdc12347dadd93358ef2bd743b8f717dfd /MediaBrowser.Controller/Plugins | |
| parent | a4a3f598af92c7e62a920c4a2eb4f89081c13648 (diff) | |
Enable nullable reference types for MediaBrowser.Controller
Diffstat (limited to 'MediaBrowser.Controller/Plugins')
| -rw-r--r-- | MediaBrowser.Controller/Plugins/ILocalizablePlugin.cs | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/MediaBrowser.Controller/Plugins/ILocalizablePlugin.cs b/MediaBrowser.Controller/Plugins/ILocalizablePlugin.cs deleted file mode 100644 index bf15fe040..000000000 --- a/MediaBrowser.Controller/Plugins/ILocalizablePlugin.cs +++ /dev/null @@ -1,22 +0,0 @@ -#pragma warning disable CS1591 - -using System.IO; -using System.Reflection; - -namespace MediaBrowser.Controller.Plugins -{ - public interface ILocalizablePlugin - { - Stream GetDictionary(string culture); - } - - public static class LocalizablePluginHelper - { - public static Stream GetDictionary(Assembly assembly, string manifestPrefix, string culture) - { - // Find all dictionaries using GetManifestResourceNames, start start with the prefix - // Return the one for the culture if exists, otherwise return the default - return null; - } - } -} |
