From 77db0820e37b5a2b2f66562a00b8c689b5f2c022 Mon Sep 17 00:00:00 2001 From: Felipe Magno de Almeida Date: Tue, 14 Jan 2020 11:02:05 -0300 Subject: [PATCH] c#: Remove warning about unused variable Reviewed-by: Marcel Hollerbach Differential Revision: https://phab.enlightenment.org/D11097 --- src/bindings/mono/efl_mono/efl_csharp_application.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bindings/mono/efl_mono/efl_csharp_application.cs b/src/bindings/mono/efl_mono/efl_csharp_application.cs index 9c2f7f0f06..c4abdfe76c 100644 --- a/src/bindings/mono/efl_mono/efl_csharp_application.cs +++ b/src/bindings/mono/efl_mono/efl_csharp_application.cs @@ -198,10 +198,10 @@ public abstract class Application { Init(components); Efl.App app = Efl.App.AppMain; +#if EFL_BETA var command_line = new List(); //command_line.Add(List.ConvertAll(Environment.GetCommandLineArgs(), s => (Eina.Stringshare)s)); //command_line.AddRange(Environment.GetCommandLineArgs()); -#if EFL_BETA app.SetCommandArray(command_line); #endif app.ArgumentsEvent += (object sender, LoopArgumentsEventArgs evt) =>