c#: Remove warning about unused variable
authorFelipe Magno de Almeida <felipe@expertisesolutions.com.br>
Tue, 14 Jan 2020 14:02:05 +0000 (11:02 -0300)
committerJongmin Lee <jm105.lee@samsung.com>
Wed, 15 Jan 2020 21:23:08 +0000 (06:23 +0900)
Reviewed-by: Marcel Hollerbach <mail@marcel-hollerbach.de>
Differential Revision: https://phab.enlightenment.org/D11097

src/bindings/mono/efl_mono/efl_csharp_application.cs

index fcacb1f..8687492 100644 (file)
@@ -202,10 +202,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) =>