2
0
Эх сурвалжийг харах

2003/03/25 Nick Drochak <[email protected]>

	* DiagnosticsConfigurationHandlerTest.cs: Fix compiler warnings

svn path=/trunk/mcs/; revision=12808
Nick Drochak 23 жил өмнө
parent
commit
d3ca64a84d

+ 4 - 0
mcs/class/System/Test/System.Diagnostics/ChangeLog

@@ -1,3 +1,7 @@
+2003/03/25  Nick Drochak <[email protected]>
+
+	* DiagnosticsConfigurationHandlerTest.cs: Fix compiler warnings
+
 2002-12-20  Jonathan Pryor <[email protected]>
 
 	* AllTests.cs: Add new tests

+ 2 - 2
mcs/class/System/Test/System.Diagnostics/DiagnosticsConfigurationHandlerTest.cs

@@ -47,9 +47,9 @@ namespace MonoTests.System.Diagnostics {
 					CreateHandler (xml);
 					Assertion.Fail (string.Format ("{0}:{1}: no exception generated", name, arg));
 				}
-				catch (ConfigurationException ce) {
+				catch (ConfigurationException) {
 				}
-				catch (AssertionException afe) {
+				catch (AssertionException) {
 					// This is generated by the Assertion.Fail() statement in the try block.
 					throw;
 				}