From 9e5cc2c98a3e7f641a5cd4c0f4344fdcafcaeabf Mon Sep 17 00:00:00 2001 From: Da-Teach Date: Tue, 2 Aug 2016 11:15:29 +0200 Subject: [PATCH] Added #pragma for async-warning --- PokemonGo.RocketAPI/Login/GoogleLogin.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/PokemonGo.RocketAPI/Login/GoogleLogin.cs b/PokemonGo.RocketAPI/Login/GoogleLogin.cs index f501189..d5af300 100644 --- a/PokemonGo.RocketAPI/Login/GoogleLogin.cs +++ b/PokemonGo.RocketAPI/Login/GoogleLogin.cs @@ -22,7 +22,9 @@ public GoogleLogin(string email, string password) this.password = password; } +#pragma warning disable 1998 public async Task GetAccessToken() +#pragma warning restore 1998 { var client = new GPSOAuthClient(email, password); var response = client.PerformMasterLogin();