aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/HttpServer/RangeRequestWriter.cs
diff options
context:
space:
mode:
authorBond_009 <bond.009@outlook.com>2019-01-06 20:35:36 +0100
committerBond_009 <bond.009@outlook.com>2019-01-06 20:35:36 +0100
commit07a8e49c4b1e4a2dddbaa49ab6f1ff4f271fbf20 (patch)
tree86cc8c77ebf98985cfa8f4727f0f900d24219042 /Emby.Server.Implementations/HttpServer/RangeRequestWriter.cs
parentb27315bc08d4d224cf090efc24385c7102741089 (diff)
Cleanup some small things
Diffstat (limited to 'Emby.Server.Implementations/HttpServer/RangeRequestWriter.cs')
-rw-r--r--Emby.Server.Implementations/HttpServer/RangeRequestWriter.cs5
1 files changed, 0 insertions, 5 deletions
diff --git a/Emby.Server.Implementations/HttpServer/RangeRequestWriter.cs b/Emby.Server.Implementations/HttpServer/RangeRequestWriter.cs
index dc20ee1a2..795f96f2c 100644
--- a/Emby.Server.Implementations/HttpServer/RangeRequestWriter.cs
+++ b/Emby.Server.Implementations/HttpServer/RangeRequestWriter.cs
@@ -40,8 +40,6 @@ namespace Emby.Server.Implementations.HttpServer
/// </summary>
private static readonly CultureInfo UsCulture = new CultureInfo("en-US");
- public List<Cookie> Cookies { get; private set; }
-
/// <summary>
/// Additional HTTP Headers
/// </summary>
@@ -75,7 +73,6 @@ namespace Emby.Server.Implementations.HttpServer
Headers["Accept-Ranges"] = "bytes";
StatusCode = HttpStatusCode.PartialContent;
- Cookies = new List<Cookie>();
SetRangeValues(contentLength);
}
@@ -223,7 +220,5 @@ namespace Emby.Server.Implementations.HttpServer
get { return (HttpStatusCode)Status; }
set { Status = (int)value; }
}
-
- public string StatusDescription { get; set; }
}
}