From: WonYoung Choi Date: Thu, 19 Jan 2017 10:05:46 +0000 (+0900) Subject: Fix build-break in GBS/OBS build X-Git-Tag: accepted/tizen/ivi/20170119.222559~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=151caa4545a447d67b4303ada9989a796fdeca6e;p=platform%2Fcore%2Fcsapi%2Fxamarin-forms-extension.git Fix build-break in GBS/OBS build In MCS, Operator `??' cannot be applied to operands of type `string' and `string' Change-Id: Ic945fb2260065df0059df5940946fe48490d51a0 --- diff --git a/Tizen.Xamarin.Forms.Extension/RadioButton.cs b/Tizen.Xamarin.Forms.Extension/RadioButton.cs index 20b30db..f2e4f23 100755 --- a/Tizen.Xamarin.Forms.Extension/RadioButton.cs +++ b/Tizen.Xamarin.Forms.Extension/RadioButton.cs @@ -114,7 +114,7 @@ namespace Tizen.Xamarin.Forms.Extension public string GroupName { get { return (string)GetValue(GroupNameProperty); } - set { SetValue(GroupNameProperty, value ?? default(string)); } + set { SetValue(GroupNameProperty, value); } } /// @@ -176,4 +176,4 @@ namespace Tizen.Xamarin.Forms.Extension radioButton.Selected?.Invoke(radioButton, new SelectedEventArgs((bool)newValue)); } } -} \ No newline at end of file +}