summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Tizen/Extensions
diff options
context:
space:
mode:
authorSungHyun Min <shyun.min@samsung.com>2017-03-24 20:00:14 +0900
committerKangho Hur <kangho.hur@samsung.com>2017-10-23 13:34:32 +0900
commite1e87d4c9080449f878129d5145b4d4e9dcd64d7 (patch)
tree697d05c184d8bf60ce6126cb11a308c23c90bf23 /Xamarin.Forms.Platform.Tizen/Extensions
parentd7ad5dcba594136ec93d3d0da007226044782e17 (diff)
downloadxamarin-forms-e1e87d4c9080449f878129d5145b4d4e9dcd64d7.tar.gz
xamarin-forms-e1e87d4c9080449f878129d5145b4d4e9dcd64d7.tar.bz2
xamarin-forms-e1e87d4c9080449f878129d5145b4d4e9dcd64d7.zip
Fix SVACE issue
Change-Id: I706b16490edbd56462b665dbf861ea7fc3f01a3d Signed-off-by: SungHyun Min <shyun.min@samsung.com>
Diffstat (limited to 'Xamarin.Forms.Platform.Tizen/Extensions')
-rw-r--r--Xamarin.Forms.Platform.Tizen/Extensions/KeyboardExtensions.cs8
1 files changed, 2 insertions, 6 deletions
diff --git a/Xamarin.Forms.Platform.Tizen/Extensions/KeyboardExtensions.cs b/Xamarin.Forms.Platform.Tizen/Extensions/KeyboardExtensions.cs
index 000b6bb2..9cc02b2a 100644
--- a/Xamarin.Forms.Platform.Tizen/Extensions/KeyboardExtensions.cs
+++ b/Xamarin.Forms.Platform.Tizen/Extensions/KeyboardExtensions.cs
@@ -9,11 +9,7 @@ namespace Xamarin.Forms.Platform.Tizen
/// <param name="keyboard">The Xamarin.Forms.Keyboard class instance to be converted to ElmSharp.Keyboard.</param>
public static Native.Keyboard ToNative(this Keyboard keyboard)
{
- if (keyboard is TextKeyboard)
- {
- return Native.Keyboard.Normal;
- }
- else if (keyboard is NumericKeyboard)
+ if (keyboard is NumericKeyboard)
{
return Native.Keyboard.Number;
}
@@ -39,4 +35,4 @@ namespace Xamarin.Forms.Platform.Tizen
}
}
}
-}
+} \ No newline at end of file