diff options
| author | Thomas Jones <tjwalkr3@gmail.com> | 2025-09-23 13:17:52 -0600 |
|---|---|---|
| committer | Thomas Jones <tjwalkr3@gmail.com> | 2025-09-23 13:17:52 -0600 |
| commit | 378ba937b6e5f79a065c56b065d57c192a634fb7 (patch) | |
| tree | 859caa650f94067670a23d843c3ab58eb25beeb0 | |
| parent | 7bb68d86102834dcda8e6faa736d13c54144d005 (diff) | |
Added in pragma warning disable for CA1815 warning.
Co-authored-by: Derpipose <90276123+Derpipose@users.noreply.github.com>
| -rw-r--r-- | Emby.Naming/AudioBook/AudioBookNameParserResult.cs | 2 | ||||
| -rw-r--r-- | Emby.Naming/Video/CleanDateTimeResult.cs | 2 | ||||
| -rw-r--r-- | MediaBrowser.Model/Drawing/ImageDimensions.cs | 1 |
3 files changed, 5 insertions, 0 deletions
diff --git a/Emby.Naming/AudioBook/AudioBookNameParserResult.cs b/Emby.Naming/AudioBook/AudioBookNameParserResult.cs index 3f2d7b2b0b..de78e75a91 100644 --- a/Emby.Naming/AudioBook/AudioBookNameParserResult.cs +++ b/Emby.Naming/AudioBook/AudioBookNameParserResult.cs @@ -1,3 +1,5 @@ +#pragma warning disable CA1815 + namespace Emby.Naming.AudioBook { /// <summary> diff --git a/Emby.Naming/Video/CleanDateTimeResult.cs b/Emby.Naming/Video/CleanDateTimeResult.cs index c675a19d0f..e367f92213 100644 --- a/Emby.Naming/Video/CleanDateTimeResult.cs +++ b/Emby.Naming/Video/CleanDateTimeResult.cs @@ -1,3 +1,5 @@ +#pragma warning disable CA1815 + namespace Emby.Naming.Video { /// <summary> diff --git a/MediaBrowser.Model/Drawing/ImageDimensions.cs b/MediaBrowser.Model/Drawing/ImageDimensions.cs index f84fe68305..49528ef8ae 100644 --- a/MediaBrowser.Model/Drawing/ImageDimensions.cs +++ b/MediaBrowser.Model/Drawing/ImageDimensions.cs @@ -1,4 +1,5 @@ #pragma warning disable CS1591 +#pragma warning disable CA1815 using System.Globalization; |
