From: Vitor Sousa Date: Mon, 8 Jul 2019 15:53:41 +0000 (+0200) Subject: csharp: fix build warning related with an unused field in an unit test X-Git-Tag: accepted/tizen/unified/20190711.062823~14 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=13405c31880a568906f3021aaea97e236466bacf;p=platform%2Fupstream%2Fefl.git csharp: fix build warning related with an unused field in an unit test Test Plan: `meson test` Reviewers: lauromoura, felipealmeida, segfaultxavi Reviewed By: lauromoura Subscribers: cedric, #reviewers, #committers Tags: #efl Differential Revision: https://phab.enlightenment.org/D9240 --- diff --git a/src/tests/efl_mono/Inheritance.cs b/src/tests/efl_mono/Inheritance.cs index 74c1086..26f51c5 100644 --- a/src/tests/efl_mono/Inheritance.cs +++ b/src/tests/efl_mono/Inheritance.cs @@ -54,7 +54,7 @@ class TestInheritance internal class Inherit3Child : Dummy.TestObject { - Inherit3Parent parent; + //Inherit3Parent parent; public Inherit3Child(Inherit3Parent parent) : base(parent) { // WARNING: Uncommenting the line below causes the parent-child cycle to leak.