diff options
| author | Bond-009 <bond.009@outlook.com> | 2021-05-07 14:09:12 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-07 14:09:12 +0200 |
| commit | a3c9edde347122437e988aac9eb5dacb08f0c345 (patch) | |
| tree | 7152a38c3fd4ffdfa8d39ca2c1a28d01113f43b7 /MediaBrowser.Controller/Authentication | |
| parent | a4a3f598af92c7e62a920c4a2eb4f89081c13648 (diff) | |
| parent | 4367b97a54f31233e242ef1afe6714b934ecf4d9 (diff) | |
Merge pull request #6000 from Bond-009/nullable2
Diffstat (limited to 'MediaBrowser.Controller/Authentication')
3 files changed, 6 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Authentication/AuthenticationResult.cs b/MediaBrowser.Controller/Authentication/AuthenticationResult.cs index 4249a9a66..635e4eb3d 100644 --- a/MediaBrowser.Controller/Authentication/AuthenticationResult.cs +++ b/MediaBrowser.Controller/Authentication/AuthenticationResult.cs @@ -1,3 +1,5 @@ +#nullable disable + #pragma warning disable CS1591 using MediaBrowser.Controller.Session; diff --git a/MediaBrowser.Controller/Authentication/IAuthenticationProvider.cs b/MediaBrowser.Controller/Authentication/IAuthenticationProvider.cs index ecdffa2eb..a56d3c822 100644 --- a/MediaBrowser.Controller/Authentication/IAuthenticationProvider.cs +++ b/MediaBrowser.Controller/Authentication/IAuthenticationProvider.cs @@ -1,3 +1,5 @@ +#nullable disable + #pragma warning disable CS1591 using System.Threading.Tasks; diff --git a/MediaBrowser.Controller/Authentication/IPasswordResetProvider.cs b/MediaBrowser.Controller/Authentication/IPasswordResetProvider.cs index 6729b9115..8c9d1baf8 100644 --- a/MediaBrowser.Controller/Authentication/IPasswordResetProvider.cs +++ b/MediaBrowser.Controller/Authentication/IPasswordResetProvider.cs @@ -1,3 +1,5 @@ +#nullable disable + #pragma warning disable CS1591 using System; |
