Skip to content
This repository was archived by the owner on Aug 9, 2025. It is now read-only.

Commit 4635782

Browse files
committed
fix warning / minor change for consistency with other code that has an empty catch block
1 parent a142b4e commit 4635782

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

CPPCheckPlugin/AnalyzerCppcheck.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,8 @@ public AnalyzerCppcheck()
3434
File.Delete(file);
3535
}
3636
}
37-
}
38-
catch (Exception e)
39-
{
4037
}
38+
catch (System.Exception) {}
4139
}
4240

4341
~AnalyzerCppcheck()

0 commit comments

Comments
 (0)