xartigas pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=5299a65d453b59e16cd48741c65974a1fae34916
commit 5299a65d453b59e16cd48741c65974a1fae34916 Author: Xavi Artigas <[email protected]> Date: Mon Oct 28 15:12:35 2019 +0100 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) --
