Removed an unused variable warning.
This commit is contained in:
parent
4354f68f2e
commit
9a435c6194
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue