Skip to content

Commit

Permalink
Merge pull request #516 from plinehan/master
Browse files Browse the repository at this point in the history
Make FileDownloader class public so clients can specify an alternate …
  • Loading branch information
anaisbetts committed Dec 10, 2015
2 parents 2d3a0f7 + c9bddb9 commit afea4ec
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
{
private readonly WebClient _providedClient;

Expand Down

0 comments on commit afea4ec

Please sign in to comment.