felipealmeida pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=b4846c95a2181b52bf1deb4abd7e7bf3bb1fa7df
commit b4846c95a2181b52bf1deb4abd7e7bf3bb1fa7df Author: Yeongjong Lee <[email protected]> Date: Fri Dec 20 11:00:45 2019 +0000 eo_mono: make Eo.Globals internal All members of `Eo.Globals` are already `internal`. It is unnecessary for `Eo.Globals` to be `public`. Reviewed-by: Felipe Magno de Almeida <[email protected]> Differential Revision: https://phab.enlightenment.org/D10938 --- 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 29a346dcc4..ea7104b384 100644 --- a/src/bindings/mono/eo_mono/iwrapper.cs +++ b/src/bindings/mono/eo_mono/iwrapper.cs @@ -34,7 +34,7 @@ namespace Efl namespace Eo { -public static class Globals +internal static class Globals { /// <summary>Represents the type of the native Efl_Class.</summary> internal enum EflClassType --
