fix warnings about unused local variables
This commit is contained in:
@@ -63,7 +63,7 @@ namespace OpenRA.Test
|
|||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
var i = actorInfo.TraitsInConstructOrder();
|
actorInfo.TraitsInConstructOrder();
|
||||||
throw new Exception("Exception not thrown!");
|
throw new Exception("Exception not thrown!");
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
@@ -85,7 +85,7 @@ namespace OpenRA.Test
|
|||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
var i = actorInfo.TraitsInConstructOrder();
|
actorInfo.TraitsInConstructOrder();
|
||||||
throw new Exception("Exception not thrown!");
|
throw new Exception("Exception not thrown!");
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
|
|||||||
Reference in New Issue
Block a user