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?
This commit is contained in:
Xavi Artigas 2019-10-28 15:12:35 +01:00
parent 2f5e2de8c4
commit 5299a65d45
1 changed files with 1 additions and 1 deletions

View File

@ -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)