Skip to content

Commit

Permalink
Clean up warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Gargaj committed Dec 29, 2017
1 parent b124c0b commit 246f989
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DownloadDialog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ private async void DownloadDialog_Load(object sender, EventArgs args)
{
await WatchDemo();
}
catch (Exception ex)
catch (Exception)
{
throw;
}
Expand Down
2 changes: 1 addition & 1 deletion Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ private async static Task CheckForUpdates()
{
contents = await wc.DownloadStringTaskAsync(url);
}
catch (Exception e)
catch (Exception)
{
}

Expand Down
2 changes: 1 addition & 1 deletion Runners/WindowsExecutable.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ private bool IsWindowsExecutable(string filePath)
if (reader.ReadByte() != 'E') return false;
}
}
catch (Exception e)
catch (Exception)
{
return false;
}
Expand Down

0 comments on commit 246f989

Please sign in to comment.