mirror of
https://github.com/TECHNOFAB11/jwt-authorizer.git
synced 2025-12-12 16:10:06 +01:00
fix: clippy warnings
This commit is contained in:
parent
ad3d846175
commit
c27f38138a
2 changed files with 4 additions and 3 deletions
|
|
@ -91,8 +91,8 @@ impl Validation {
|
|||
HashSet::with_capacity(0)
|
||||
};
|
||||
|
||||
let aud = self.aud.clone().map(|v| HashSet::from_iter(v.into_iter()));
|
||||
let iss = self.iss.clone().map(|v| HashSet::from_iter(v.into_iter()));
|
||||
let aud = self.aud.clone().map(HashSet::from_iter);
|
||||
let iss = self.iss.clone().map(HashSet::from_iter);
|
||||
|
||||
let mut jwt_validation = jsonwebtoken::Validation::default();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue