Skip to content

Commit

Permalink
Make FileDownloader class public so clients can specify an alternate …
Browse files Browse the repository at this point in the history
…WebClient.
  • Loading branch information
Patrick Linehan committed Dec 9, 2015
1 parent 8dce16f commit c9bddb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Squirrel/FileDownloader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public interface IFileDownloader
Task<byte[]> DownloadUrl(string url);
}

class FileDownloader : IFileDownloader, IEnableLogger
public class FileDownloader : IFileDownloader, IEnableLogger
{
public async Task DownloadFile(string url, string targetFile, Action<int> progress)
{
Expand Down

0 comments on commit c9bddb9

Please sign in to comment.