summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKangho Hur <kangho.hur@samsung.com>2017-06-23 10:03:34 +0900
committerKangho Hur <kangho.hur@samsung.com>2017-10-23 13:34:37 +0900
commitc1ccbbf87344e43ee79ccefe9c806f98025f7e48 (patch)
tree194bf0006aeaf0e7304e047905e6a9ae82694866
parent43b5fb2512b2154e9795715d695dfd3df9554e3a (diff)
downloadxamarin-forms-c1ccbbf87344e43ee79ccefe9c806f98025f7e48.tar.gz
xamarin-forms-c1ccbbf87344e43ee79ccefe9c806f98025f7e48.tar.bz2
xamarin-forms-c1ccbbf87344e43ee79ccefe9c806f98025f7e48.zip
Remove unnecessaray parameter of TizenDeviceInfo
Change-Id: I42b2f56a971ef25e49cafbc0c7822988bb60b371
-rw-r--r--Xamarin.Forms.Platform.Tizen/Forms.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Xamarin.Forms.Platform.Tizen/Forms.cs b/Xamarin.Forms.Platform.Tizen/Forms.cs
index 57fc6050..85b37aed 100644
--- a/Xamarin.Forms.Platform.Tizen/Forms.cs
+++ b/Xamarin.Forms.Platform.Tizen/Forms.cs
@@ -78,7 +78,7 @@ namespace Xamarin.Forms.Platform.Tizen
}
}
- public TizenDeviceInfo(FormsApplication formsApplication)
+ public TizenDeviceInfo()
{
int width = 0;
int height = 0;
@@ -179,7 +179,7 @@ namespace Xamarin.Forms.Platform.Tizen
Device.info = null;
}
- Device.Info = new Forms.TizenDeviceInfo(application);
+ Device.Info = new Forms.TizenDeviceInfo();
if (!Forms.IsInitialized)
{