From 5299a65d453b59e16cd48741c65974a1fae34916 Mon Sep 17 00:00:00 2001 From: Xavi Artigas Date: Mon, 28 Oct 2019 15:12:35 +0100 Subject: [PATCH] Silence mono warning in tests ../src/tests/efl_mono/Model.cs(35,13): warning CS0219: The variable `veggies' is assigned but its value is never used This was driving me nuts... Am I the only one seeing these things? --- src/tests/efl_mono/Model.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/efl_mono/Model.cs b/src/tests/efl_mono/Model.cs index 54f7200575..63d28d408f 100644 --- a/src/tests/efl_mono/Model.cs +++ b/src/tests/efl_mono/Model.cs @@ -32,7 +32,7 @@ public class TestModel { { Efl.Loop loop = Efl.App.AppMain; - var veggies = CreateModel(loop); + CreateModel(loop); } internal static async Task EasyModelExtractionAsync (Efl.Loop loop)