cargo fmt

This commit is contained in:
Glenn Griffin
2019-11-08 15:25:52 -08:00
parent 2cf2e465d1
commit 4bd81c3263
10 changed files with 84 additions and 126 deletions

View File

@@ -95,11 +95,7 @@ pub trait AuthenticatorDelegate: Clone + Send + Sync {
/// Called if we could not acquire a refresh token for a reason possibly specified
/// by the server.
/// This call is made for the delegate's information only.
fn token_refresh_failed<S: AsRef<str>>(
&self,
error: S,
error_description: &Option<String>,
) {
fn token_refresh_failed<S: AsRef<str>>(&self, error: S, error_description: &Option<String>) {
{
let _ = error;
}