From: YeongJong Lee Date: Thu, 29 Oct 2020 05:00:39 +0000 (+0900) Subject: [NUI] remove unused exception parameters (#2089) X-Git-Tag: accepted/tizen/unified/20210219.040944~320 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e3a10647809895981cccf7d347e112f70c5e7857;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git [NUI] remove unused exception parameters (#2089) Fixes CS0168 Co-authored-by: Yeongjong Lee Co-authored-by: Jiyun Yang --- diff --git a/src/Tizen.NUI.WindowSystem/src/public/QuickPanelClient.cs b/src/Tizen.NUI.WindowSystem/src/public/QuickPanelClient.cs index 756ba3c..4b8dcce 100644 --- a/src/Tizen.NUI.WindowSystem/src/public/QuickPanelClient.cs +++ b/src/Tizen.NUI.WindowSystem/src/public/QuickPanelClient.cs @@ -304,7 +304,7 @@ namespace Tizen.NUI.WindowSystem.Shell { _tzsh.ErrorCodeThrow(res); } - catch (ArgumentException e) + catch (ArgumentException) { throw new MemberAccessException("QuickPanelClient is a corrupted"); } diff --git a/src/Tizen.NUI.WindowSystem/src/public/QuickPanelService.cs b/src/Tizen.NUI.WindowSystem/src/public/QuickPanelService.cs index 7eac68c..99863d9 100644 --- a/src/Tizen.NUI.WindowSystem/src/public/QuickPanelService.cs +++ b/src/Tizen.NUI.WindowSystem/src/public/QuickPanelService.cs @@ -154,7 +154,7 @@ namespace Tizen.NUI.WindowSystem.Shell { _tzsh.ErrorCodeThrow(res); } - catch (ArgumentException e) + catch (ArgumentException) { throw new MemberAccessException("QuickPanelService is a corrupted"); } diff --git a/src/Tizen.NUI.WindowSystem/src/public/TizenRegion.cs b/src/Tizen.NUI.WindowSystem/src/public/TizenRegion.cs index b7a2a32..4ba18e0 100644 --- a/src/Tizen.NUI.WindowSystem/src/public/TizenRegion.cs +++ b/src/Tizen.NUI.WindowSystem/src/public/TizenRegion.cs @@ -104,7 +104,7 @@ namespace Tizen.NUI.WindowSystem.Shell { _tzsh.ErrorCodeThrow(res); } - catch (ArgumentException e) + catch (ArgumentException) { throw new MemberAccessException("TizenRegion is a corrupted"); } diff --git a/src/Tizen.NUI.WindowSystem/src/public/TizenShell.cs b/src/Tizen.NUI.WindowSystem/src/public/TizenShell.cs index efc38ae..d2e6be1 100644 --- a/src/Tizen.NUI.WindowSystem/src/public/TizenShell.cs +++ b/src/Tizen.NUI.WindowSystem/src/public/TizenShell.cs @@ -128,7 +128,7 @@ namespace Tizen.NUI.WindowSystem.Shell { ErrorCodeThrow(res); } - catch (ArgumentException e) + catch (ArgumentException) { throw new MemberAccessException("TizehShell is a corrupted"); }