Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fixed empty catch warning
  • Loading branch information
alinasmirnova committed Sep 4, 2023
commit ddca6281e703cc6c2285476daa045cba5a13af1c
5 changes: 4 additions & 1 deletion samples/BenchmarkDotNet.Samples/IntroExceptionDiagnoser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@ public void ThrowExceptionRandomly()
throw new Exception();
}
}
catch { }
catch
{
// ignored
}
}
}
}