c#: Remove warning about unused variable

Reviewed-by: Marcel Hollerbach <mail@marcel-hollerbach.de>
Differential Revision: https://phab.enlightenment.org/D11097
This commit is contained in:
Felipe Magno de Almeida 2020-01-14 11:02:05 -03:00 committed by Marcel Hollerbach
parent 7661473f28
commit 77db0820e3
1 changed files with 1 additions and 1 deletions

View File

@ -198,10 +198,10 @@ public abstract class Application
{
Init(components);
Efl.App app = Efl.App.AppMain;
#if EFL_BETA
var command_line = new List<Eina.Stringshare>();
//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) =>