From ddb01b6ae5235eea2e6fb0331459b8594d99aebd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Mail=C3=A4nder?= Date: Mon, 3 Aug 2015 17:19:00 +0200 Subject: [PATCH] fix warnings about unused local variables --- OpenRA.Test/OpenRA.Game/ActorInfoTest.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OpenRA.Test/OpenRA.Game/ActorInfoTest.cs b/OpenRA.Test/OpenRA.Game/ActorInfoTest.cs index baf061886a..5aa28e23df 100644 --- a/OpenRA.Test/OpenRA.Game/ActorInfoTest.cs +++ b/OpenRA.Test/OpenRA.Game/ActorInfoTest.cs @@ -63,7 +63,7 @@ namespace OpenRA.Test try { - var i = actorInfo.TraitsInConstructOrder(); + actorInfo.TraitsInConstructOrder(); throw new Exception("Exception not thrown!"); } catch (Exception e) @@ -85,7 +85,7 @@ namespace OpenRA.Test try { - var i = actorInfo.TraitsInConstructOrder(); + actorInfo.TraitsInConstructOrder(); throw new Exception("Exception not thrown!"); } catch (Exception e)