summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Pages
diff options
context:
space:
mode:
authorRui Marinho <me@ruimarinho.net>2016-09-18 19:24:44 +0100
committerJason Smith <jason.smith@xamarin.com>2016-09-18 11:24:44 -0700
commitd4efe0a37ea87967e38a7d0325df8d84e1c125fc (patch)
treee8ea30760f1a011599e73ec1aea9e3e2349edc1f /Xamarin.Forms.Pages
parent7d66ed0aada19c7d320186a1a34907d77d38ab0d (diff)
downloadxamarin-forms-d4efe0a37ea87967e38a7d0325df8d84e1c125fc.tar.gz
xamarin-forms-d4efe0a37ea87967e38a7d0325df8d84e1c125fc.tar.bz2
xamarin-forms-d4efe0a37ea87967e38a7d0325df8d84e1c125fc.zip
[Controls] Update Insights and UITest packages and fix warnings (#361)
* [Controls] Update Insights and UITest packages * Update Xamarin.Forms.Platform.Android (Forwarders).csproj
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;
}
}