diff options
author | Alex Auvolat <alex@adnab.me> | 2023-01-26 17:26:32 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2023-01-26 17:26:32 +0100 |
commit | 8e93d6997415d60ba5c371da8b27065a57254a8c (patch) | |
tree | 8bf3c182ca5d70bd242cc691d2b1fee65c8b6cd3 /src/api/s3/bucket.rs | |
parent | 3113f6b5f2a688a3f7c4f933774866f48618f7d1 (diff) | |
download | garage-8e93d6997415d60ba5c371da8b27065a57254a8c.tar.gz garage-8e93d6997415d60ba5c371da8b27065a57254a8c.zip |
More clippy fixes
Diffstat (limited to 'src/api/s3/bucket.rs')
-rw-r--r-- | src/api/s3/bucket.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/s3/bucket.rs b/src/api/s3/bucket.rs index 8471385f..733981e1 100644 --- a/src/api/s3/bucket.rs +++ b/src/api/s3/bucket.rs @@ -305,7 +305,7 @@ fn parse_create_bucket_xml(xml_bytes: &[u8]) -> Option<Option<String>> { let mut ret = None; for item in cbc.children() { if item.has_tag_name("LocationConstraint") { - if ret != None { + if ret.is_some() { return None; } ret = Some(item.text()?.to_string()); |