diff options
| author | Luke <luke.pulverenti@gmail.com> | 2017-09-28 13:06:15 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-09-28 13:06:15 -0400 |
| commit | d9c4f2942781efc4a9417dd88a39592975a5f85f (patch) | |
| tree | 14fa1d72fd4e2f8f7e2b16df1f539b22e7aba5c3 /MediaBrowser.Controller/IO/StreamHelper.cs | |
| parent | 80822d98e4ad3df7cb2e54385c76989ea5945ab3 (diff) | |
| parent | f2444d97a0d1b2d69e5b73dd82bc4a76e73b00f0 (diff) | |
Merge pull request #2921 from MediaBrowser/dev
Dev
Diffstat (limited to 'MediaBrowser.Controller/IO/StreamHelper.cs')
| -rw-r--r-- | MediaBrowser.Controller/IO/StreamHelper.cs | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/MediaBrowser.Controller/IO/StreamHelper.cs b/MediaBrowser.Controller/IO/StreamHelper.cs index af97a0233..106fec41f 100644 --- a/MediaBrowser.Controller/IO/StreamHelper.cs +++ b/MediaBrowser.Controller/IO/StreamHelper.cs @@ -6,11 +6,6 @@ namespace MediaBrowser.Controller.IO { public static class StreamHelper { - public static void CopyTo(Stream source, Stream destination, int bufferSize, CancellationToken cancellationToken) - { - CopyTo(source, destination, bufferSize, null, cancellationToken); - } - public static void CopyTo(Stream source, Stream destination, int bufferSize, Action onStarted, CancellationToken cancellationToken) { byte[] buffer = new byte[bufferSize]; |
