summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVitor Sousa <vitorsousasilva@gmail.com>2017-06-07 16:27:54 -0300
committerVitor Sousa <vitorsousasilva@gmail.com>2017-06-07 16:27:54 -0300
commitf6745fffa59231b3011752dc26c96fe239d3867e (patch)
treefb4ab7cf553c86d02e05931bd332add10fa0e69d
parent6159595ada8ad5275c4c9621024644f4a47bad4f (diff)
downloadefl-f6745fffa59231b3011752dc26c96fe239d3867e.tar.gz
eo_mono: remove unnecessary warning in the custom marshaller MarsalTest
-rw-r--r--src/bindings/mono/eo_mono/iwrapper.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bindings/mono/eo_mono/iwrapper.cs b/src/bindings/mono/eo_mono/iwrapper.cs
index 9fe1995fd9..7e8921791e 100644
--- a/src/bindings/mono/eo_mono/iwrapper.cs
+++ b/src/bindings/mono/eo_mono/iwrapper.cs
@@ -198,13 +198,13 @@ public class MarshalTest<T, U> : ICustomMarshaler
}
public void CleanUpManagedData(object ManagedObj)
{
- eina.Log.Warning("MarshalTest.CleanUpManagedData not implemented");
+ //eina.Log.Warning("MarshalTest.CleanUpManagedData not implemented");
//throw new NotImplementedException();
}
public void CleanUpNativeData(IntPtr pNativeData)
{
- eina.Log.Warning("MarshalTest.CleanUpNativeData not implemented");
+ //eina.Log.Warning("MarshalTest.CleanUpNativeData not implemented");
//throw new NotImplementedException();
}