Remove unnecessary context null check

Application.Context should never be null, and if it is, we have much larger problems in our app.
This commit is contained in:
Redth 2018-02-21 15:45:10 -05:00
Родитель 538add43a3
Коммит 2cef835cd0
1 изменённых файлов: 0 добавлений и 2 удалений

Просмотреть файл

@ -115,8 +115,6 @@ namespace Xamarin.F50
ISharedPreferences GetSharedPreferences ()
{
var context = Application.Context;
if (context == null)
return null;
return string.IsNullOrWhiteSpace(SharedName) ?
PreferenceManager.GetDefaultSharedPreferences(context) :