Skip to content

Commit

Permalink
chore: remove semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
Virenbar committed Jun 21, 2024
1 parent aee8a55 commit 09ef71b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GDPIControl/Forms/FormBlacklist.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ private async void B_Download_Click(object sender, EventArgs e)
using (var FS = new FileStream(Constants.BlacklistTempPath, FileMode.Create))
{
await Client.DownloadAsync(uri, FS, progress, CTS.Token);
};
}
if (File.Exists(Constants.BlacklistPath)) { File.Delete(Constants.BlacklistPath); }
File.Move(Constants.BlacklistTempPath, Constants.BlacklistPath);
this.ShowInfo("Blacklist download done");
Expand Down

0 comments on commit 09ef71b

Please sign in to comment.