[NUI] remove unused exception parameters (#2089)
authorYeongJong Lee <cleanlyj@naver.com>
Thu, 29 Oct 2020 05:00:39 +0000 (14:00 +0900)
committerGitHub <noreply@github.com>
Thu, 29 Oct 2020 05:00:39 +0000 (14:00 +0900)
Fixes CS0168

Co-authored-by: Yeongjong Lee <yj34.lee@samsung.com>
Co-authored-by: Jiyun Yang <ji.yang@samsung.com>
src/Tizen.NUI.WindowSystem/src/public/QuickPanelClient.cs
src/Tizen.NUI.WindowSystem/src/public/QuickPanelService.cs
src/Tizen.NUI.WindowSystem/src/public/TizenRegion.cs
src/Tizen.NUI.WindowSystem/src/public/TizenShell.cs

index 756ba3c..4b8dcce 100644 (file)
@@ -304,7 +304,7 @@ namespace Tizen.NUI.WindowSystem.Shell
                     {
                         _tzsh.ErrorCodeThrow(res);
                     }
-                    catch (ArgumentException e)
+                    catch (ArgumentException)
                     {
                         throw new MemberAccessException("QuickPanelClient is a corrupted");
                     }
index 7eac68c..99863d9 100644 (file)
@@ -154,7 +154,7 @@ namespace Tizen.NUI.WindowSystem.Shell
                     {
                         _tzsh.ErrorCodeThrow(res);
                     }
-                    catch (ArgumentException e)
+                    catch (ArgumentException)
                     {
                         throw new MemberAccessException("QuickPanelService is a corrupted");
                     }
index b7a2a32..4ba18e0 100644 (file)
@@ -104,7 +104,7 @@ namespace Tizen.NUI.WindowSystem.Shell
                     {
                         _tzsh.ErrorCodeThrow(res);
                     }
-                    catch (ArgumentException e)
+                    catch (ArgumentException)
                     {
                         throw new MemberAccessException("TizenRegion is a corrupted");
                     }
index efc38ae..d2e6be1 100644 (file)
@@ -128,7 +128,7 @@ namespace Tizen.NUI.WindowSystem.Shell
                     {
                         ErrorCodeThrow(res);
                     }
-                    catch (ArgumentException e)
+                    catch (ArgumentException)
                     {
                         throw new MemberAccessException("TizehShell is a corrupted");
                     }