Review fix: Suppress CS1032: There's not a clear need for dead code

This commit is contained in:
Daniel Jurek 2018-04-03 13:45:43 -07:00 коммит произвёл Daniel Jurek
Родитель 01f12c13e6
Коммит 8bcad978ce
1 изменённых файлов: 7 добавлений и 0 удалений

Просмотреть файл

@ -10,4 +10,11 @@
Justification = "<Pending>",
Scope = "module"
)]
[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage(
"Design",
"CA1032:Implement standard exception constructors",
Justification = "Further review revealed that it's not worth keeping these constructors in the code given that we'll never explicitly invoke them",
Scope = "module"
)]