From e3a10647809895981cccf7d347e112f70c5e7857 Mon Sep 17 00:00:00 2001 From: YeongJong Lee Date: Thu, 29 Oct 2020 14:00:39 +0900 Subject: [PATCH] [NUI] remove unused exception parameters (#2089) Fixes CS0168 Co-authored-by: Yeongjong Lee Co-authored-by: Jiyun Yang --- src/Tizen.NUI.WindowSystem/src/public/QuickPanelClient.cs | 2 +- src/Tizen.NUI.WindowSystem/src/public/QuickPanelService.cs | 2 +- src/Tizen.NUI.WindowSystem/src/public/TizenRegion.cs | 2 +- src/Tizen.NUI.WindowSystem/src/public/TizenShell.cs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) 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"); } -- 2.7.4