From 3f0cc053d7ab7e3e0c0a8ba77e15b2103818aa38 Mon Sep 17 00:00:00 2001 From: YeongJong Lee Date: Mon, 22 Jun 2020 14:27:53 +0900 Subject: [PATCH] [NUI] make viewStyle field private (#1680) Fixes CA1051 --- src/Tizen.NUI/src/public/BaseComponents/View.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Tizen.NUI/src/public/BaseComponents/View.cs b/src/Tizen.NUI/src/public/BaseComponents/View.cs index 50f69f7..3f03b17 100755 --- a/src/Tizen.NUI/src/public/BaseComponents/View.cs +++ b/src/Tizen.NUI/src/public/BaseComponents/View.cs @@ -69,8 +69,7 @@ namespace Tizen.NUI.BaseComponents /// /// The Style instance binded with this View. /// - [EditorBrowsable(EditorBrowsableState.Never)] - protected ViewStyle viewStyle; + private ViewStyle viewStyle; /// This will be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API. [EditorBrowsable(EditorBrowsableState.Never)] -- 2.7.4