felipealmeida pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=a56b96d33c6aa26894fc373e520c9d5fcbbe03ce
commit a56b96d33c6aa26894fc373e520c9d5fcbbe03ce Author: Yeongjong Lee <[email protected]> Date: Fri Dec 20 10:24:29 2019 +0000 eo_mono: make BindingEntityAttribute internal `BindingEntityAttribute` is used internally to check whether the object is generated binding classes or not. API user should use protected `IsGeneratedBindingClass` instead. Reviewed-by: Felipe Magno de Almeida <[email protected]> Differential Revision: https://phab.enlightenment.org/D10937 --- src/bindings/mono/eo_mono/iwrapper.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bindings/mono/eo_mono/iwrapper.cs b/src/bindings/mono/eo_mono/iwrapper.cs index ea7104b384..2a8ebf0620 100644 --- a/src/bindings/mono/eo_mono/iwrapper.cs +++ b/src/bindings/mono/eo_mono/iwrapper.cs @@ -981,7 +981,7 @@ class PrivateNativeClass : NativeClass AllowMultiple = false, Inherited = false) ] -public class BindingEntityAttribute: System.Attribute +internal class BindingEntityAttribute: System.Attribute { public static bool IsBindingEntity(System.Type t) { --
