Skip to content

Commit

Permalink
fix(FileSystemApi): remove debug code
Browse files Browse the repository at this point in the history
  • Loading branch information
richardschneider committed Jan 4, 2019
1 parent 5ad58ce commit 9d83d5a
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/CoreApi/FileSystemApi.cs
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ internal FileSystemApi(IpfsClient ipfs)
// If a progress report.
if (r.ContainsKey("Bytes"))
{
Console.WriteLine("progress");
options.Progress?.Report(new TransferProgress
{
Name = (string)r["Name"],
Expand Down
1 change: 0 additions & 1 deletion test/CoreApi/FileSystemApiTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,6 @@ public async Task AddFile_WithProgress()
{
Progress = new Progress<TransferProgress>(t =>
{
Console.WriteLine("got it");
bytesTransferred += t.Bytes;
})
};
Expand Down

0 comments on commit 9d83d5a

Please sign in to comment.