diff options
| author | Bond-009 <bond.009@outlook.com> | 2021-08-15 14:14:33 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-08-15 14:14:33 +0200 |
| commit | fc9f45b42d80bbc5575c1975fd5f19ef158284a6 (patch) | |
| tree | 04e49b4904bad24f614fd0afd5986435ffcf217d /MediaBrowser.Controller | |
| parent | c80930c6d417db1c999c986b42de9fe10fa92341 (diff) | |
| parent | 4e9fbabef25a73a3bfed255f2cb586817ec83bb2 (diff) | |
Merge pull request #6381 from Bond-009/nullable5
Enable nullable for DlnaManager
Diffstat (limited to 'MediaBrowser.Controller')
| -rw-r--r-- | MediaBrowser.Controller/Dlna/IDlnaManager.cs | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/MediaBrowser.Controller/Dlna/IDlnaManager.cs b/MediaBrowser.Controller/Dlna/IDlnaManager.cs index b51dc255c..a64919700 100644 --- a/MediaBrowser.Controller/Dlna/IDlnaManager.cs +++ b/MediaBrowser.Controller/Dlna/IDlnaManager.cs @@ -1,5 +1,3 @@ -#nullable disable - #pragma warning disable CS1591 using System.Collections.Generic; @@ -22,7 +20,7 @@ namespace MediaBrowser.Controller.Dlna /// </summary> /// <param name="headers">The headers.</param> /// <returns>DeviceProfile.</returns> - DeviceProfile GetProfile(IHeaderDictionary headers); + DeviceProfile? GetProfile(IHeaderDictionary headers); /// <summary> /// Gets the default profile. @@ -53,14 +51,14 @@ namespace MediaBrowser.Controller.Dlna /// </summary> /// <param name="id">The identifier.</param> /// <returns>DeviceProfile.</returns> - DeviceProfile GetProfile(string id); + DeviceProfile? GetProfile(string id); /// <summary> /// Gets the profile. /// </summary> /// <param name="deviceInfo">The device information.</param> /// <returns>DeviceProfile.</returns> - DeviceProfile GetProfile(DeviceIdentification deviceInfo); + DeviceProfile? GetProfile(DeviceIdentification deviceInfo); /// <summary> /// Gets the server description XML. |
