Skip to content

Commit

Permalink
Added #pragma for async-warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Da-Teach committed Aug 2, 2016
1 parent 149d16b commit 9e5cc2c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions PokemonGo.RocketAPI/Login/GoogleLogin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ public GoogleLogin(string email, string password)
this.password = password;
}

#pragma warning disable 1998
public async Task<string> GetAccessToken()
#pragma warning restore 1998
{
var client = new GPSOAuthClient(email, password);
var response = client.PerformMasterLogin();
Expand Down

0 comments on commit 9e5cc2c

Please sign in to comment.