From 6076d4b50c09b3853c64ce6218b108cff63842d2 Mon Sep 17 00:00:00 2001 From: Sascha G Date: Fri, 29 Jul 2016 17:35:36 +0200 Subject: [PATCH] SniperPokemonTask.cs - Useless line. --- PoGo.NecroBot.Logic/Tasks/SnipePokemonTask.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/PoGo.NecroBot.Logic/Tasks/SnipePokemonTask.cs b/PoGo.NecroBot.Logic/Tasks/SnipePokemonTask.cs index c810f1c5c..386eaff6a 100644 --- a/PoGo.NecroBot.Logic/Tasks/SnipePokemonTask.cs +++ b/PoGo.NecroBot.Logic/Tasks/SnipePokemonTask.cs @@ -287,8 +287,7 @@ public static async Task Execute(ISession session, CancellationToken cancellatio private static ScanResult SnipeScanForPokemon(Location location) { - var formatter = new System.Globalization.NumberFormatInfo(); - formatter.NumberDecimalSeparator = "."; + var formatter = new System.Globalization.NumberFormatInfo() { NumberDecimalSeparator = "." }; var uri = $"https://pokevision.com/map/data/{location.Latitude.ToString(formatter)}/{location.Longitude.ToString(formatter)}"; ScanResult scanResult;