From e14a460d2a7446771e2248939844233a6f9ae9f6 Mon Sep 17 00:00:00 2001 From: the_fiddler Date: Sun, 4 Nov 2007 16:49:19 +0000 Subject: [PATCH] Removed an unused variable warning. --- Source/Examples/ExampleLauncher.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Examples/ExampleLauncher.cs b/Source/Examples/ExampleLauncher.cs index 62ad62e1..d47bcf72 100644 --- a/Source/Examples/ExampleLauncher.cs +++ b/Source/Examples/ExampleLauncher.cs @@ -99,7 +99,7 @@ namespace Examples FieldInfo info = type.GetField("order"); order = (int)info.GetValue(null); } - catch (NullReferenceException nre) + catch (NullReferenceException) { Debug.Print("Example {0} does not have ordering info", type.FullName); order = 0;