Remove more unnecessary clones.

This commit is contained in:
Glenn Griffin
2019-11-11 09:41:30 -08:00
parent b6affacbf0
commit ef23eef31d
2 changed files with 7 additions and 9 deletions

View File

@@ -111,7 +111,7 @@ pub trait FlowDelegate: Send + Sync {
/// Called if the request code is expired. You will have to start over in this case.
/// This will be the last call the delegate receives.
/// Given `DateTime` is the expiration date
fn expired(&self, _: &DateTime<Utc>) {}
fn expired(&self, _: DateTime<Utc>) {}
/// Called if the user denied access. You would have to start over.
/// This will be the last call the delegate receives.