summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Pages
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Pages')
-rw-r--r--Xamarin.Forms.Pages/BaseDataSource.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/Xamarin.Forms.Pages/BaseDataSource.cs b/Xamarin.Forms.Pages/BaseDataSource.cs
index 31608b83..678b5b74 100644
--- a/Xamarin.Forms.Pages/BaseDataSource.cs
+++ b/Xamarin.Forms.Pages/BaseDataSource.cs
@@ -17,7 +17,9 @@ namespace Xamarin.Forms.Pages
{
get
{
+#pragma warning disable CS4014 // Because this call is not awaited, execution of the current method continues before the call is completed
Initialize();
+#pragma warning restore CS4014 // Because this call is not awaited, execution of the current method continues before the call is completed
return _dataSourceList;
}
}