diff options
| author | Anthony Lavado <anthony@lavado.ca> | 2020-09-04 18:38:39 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-04 18:38:39 -0400 |
| commit | 6152d403031755e7ec5278ed7467b3f16c1642a4 (patch) | |
| tree | 849eabc305cf5b942d265626bbc4f97d15e243d2 /MediaBrowser.Common/Net/CompressionMethods.cs | |
| parent | 376e4793e610838fc05db7fdd0372e5b7e6cb2d6 (diff) | |
| parent | 23df4991b67576d9150bdf2b3240738968cad9a1 (diff) | |
Merge pull request #4030 from crobibero/http-client-migrate
Remove IHttpClient
Diffstat (limited to 'MediaBrowser.Common/Net/CompressionMethods.cs')
| -rw-r--r-- | MediaBrowser.Common/Net/CompressionMethods.cs | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/MediaBrowser.Common/Net/CompressionMethods.cs b/MediaBrowser.Common/Net/CompressionMethods.cs deleted file mode 100644 index 39b72609f..000000000 --- a/MediaBrowser.Common/Net/CompressionMethods.cs +++ /dev/null @@ -1,15 +0,0 @@ -#pragma warning disable CS1591 -#pragma warning disable SA1602 - -using System; - -namespace MediaBrowser.Common.Net -{ - [Flags] - public enum CompressionMethods - { - None = 0b00000001, - Deflate = 0b00000010, - Gzip = 0b00000100 - } -} |
