From 55c2c666c002fa880cfa314fb5c8cb9f5f1cfeba Mon Sep 17 00:00:00 2001 From: Christian Arenas Date: Thu, 22 Jun 2017 15:10:59 +0200 Subject: [PATCH] clean up and style improving --- .../eShopOnContainers/eShopOnContainers.Core/App.xaml.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Mobile/eShopOnContainers/eShopOnContainers.Core/App.xaml.cs b/src/Mobile/eShopOnContainers/eShopOnContainers.Core/App.xaml.cs index 9430b1aba..c8c8b9b2e 100644 --- a/src/Mobile/eShopOnContainers/eShopOnContainers.Core/App.xaml.cs +++ b/src/Mobile/eShopOnContainers/eShopOnContainers.Core/App.xaml.cs @@ -52,7 +52,7 @@ namespace eShopOnContainers if (Settings.AllowGpsLocation && !Settings.UseFakeLocation) { - await GetRealLocation(); + await GetGpsLocation(); } if (!Settings.UseMocks && !string.IsNullOrEmpty(Settings.UserId)) @@ -68,7 +68,7 @@ namespace eShopOnContainers // Handle when your app sleeps } - private async Task GetRealLocation() + private async Task GetGpsLocation() { var locator = CrossGeolocator.Current;