summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelipe Magno de Almeida <felipe@expertisesolutions.com.br>2020-01-14 11:02:05 -0300
committerMarcel Hollerbach <mail@marcel-hollerbach.de>2020-01-15 11:16:39 +0100
commit77db0820e37b5a2b2f66562a00b8c689b5f2c022 (patch)
tree403920bd8ad7a54ce28cf14eed326b4e7d2e57b8
parent7661473f282f021fde1574f91fc8d6e7bf946382 (diff)
downloadefl-77db0820e37b5a2b2f66562a00b8c689b5f2c022.tar.gz
c#: Remove warning about unused variable
Reviewed-by: Marcel Hollerbach <mail@marcel-hollerbach.de> Differential Revision: https://phab.enlightenment.org/D11097
-rw-r--r--src/bindings/mono/efl_mono/efl_csharp_application.cs2
1 files changed, 1 insertions, 1 deletions
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<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) =>