diff options
author | Kangho Hur <kangho.hur@samsung.com> | 2017-07-03 15:48:58 +0900 |
---|---|---|
committer | Kangho Hur <kangho.hur@samsung.com> | 2017-07-10 11:11:28 +0900 |
commit | 213fe563783762eb27ae0f43c5f469bf552a2875 (patch) | |
tree | da7121c8faab7bbe3bdc44c774e4d8cfdcf73343 /Xamarin.Forms.Platform.Tizen | |
parent | c24854432c9ed8231098cba133ecb8a59e027d50 (diff) | |
download | xamarin-forms-213fe563783762eb27ae0f43c5f469bf552a2875.tar.gz xamarin-forms-213fe563783762eb27ae0f43c5f469bf552a2875.tar.bz2 xamarin-forms-213fe563783762eb27ae0f43c5f469bf552a2875.zip |
Fix CS1525 error on obs
Change-Id: I39fedb48d34e4324414138a050fac0a419a8b602
Diffstat (limited to 'Xamarin.Forms.Platform.Tizen')
-rw-r--r-- | Xamarin.Forms.Platform.Tizen/FormsApplication.cs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Xamarin.Forms.Platform.Tizen/FormsApplication.cs b/Xamarin.Forms.Platform.Tizen/FormsApplication.cs index 0ec10c09..4399efb4 100644 --- a/Xamarin.Forms.Platform.Tizen/FormsApplication.cs +++ b/Xamarin.Forms.Platform.Tizen/FormsApplication.cs @@ -99,7 +99,11 @@ namespace Xamarin.Forms.Platform.Tizen throw new NullReferenceException("MainWindow is not prepared. This method should be called in OnCreated()."); } - _application = application ?? throw new ArgumentNullException("application"); + if (null == application) + { + throw new ArgumentNullException("application"); + } + _application = application; Application.Current = application; application.SendStart(); |