aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/IO/ThrottledStream.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Emby.Server.Implementations/IO/ThrottledStream.cs')
-rw-r--r--Emby.Server.Implementations/IO/ThrottledStream.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Emby.Server.Implementations/IO/ThrottledStream.cs b/Emby.Server.Implementations/IO/ThrottledStream.cs
index 3635ee1db..81e8abc98 100644
--- a/Emby.Server.Implementations/IO/ThrottledStream.cs
+++ b/Emby.Server.Implementations/IO/ThrottledStream.cs
@@ -1,4 +1,4 @@
-using System;
+using System;
using System.IO;
using System.Threading;
using System.Threading.Tasks;
@@ -264,7 +264,7 @@ namespace Emby.Server.Implementations.IO
{
if (!ThrottleCheck(bufferSizeInBytes))
{
- return ;
+ return;
}
_byteCount += bufferSizeInBytes;
@@ -352,4 +352,4 @@ namespace Emby.Server.Implementations.IO
}
#endregion
}
-} \ No newline at end of file
+}