Skip to content

Commit

Permalink
Yet another 2 WARNINGs to fix
Browse files Browse the repository at this point in the history
  • Loading branch information
FanDjango committed Sep 28, 2024
1 parent 88195c6 commit d37d843
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions FluentFTP/Client/AsyncClient/DownloadUriBytes.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ public partial class AsyncFtpClient {
/// </summary>
/// <param name="uri">The uri of the item to download</param>
/// <param name="progress">Provide a callback to track download progress.</param>
/// <param name="token">Cancellation token</param>
/// <returns>A byte array containing the contents of the downloaded file if successful, otherwise null.</returns>
public async Task<byte[]> DownloadUriBytes(string uri, IProgress<FtpProgress> progress = null, CancellationToken token = default(CancellationToken)) {
// verify args
Expand Down
1 change: 1 addition & 0 deletions FluentFTP/Client/AsyncClient/Execute.cs
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ public partial class AsyncFtpClient {
/// Things to do after executing a command
/// </summary>
/// <param name="command"></param>
/// <param name="token">Cancellation token</param>
protected async Task OnPostExecute(string command, CancellationToken token) {

// Update stored values
Expand Down

0 comments on commit d37d843

Please sign in to comment.