Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
LarryOsterman committed Nov 5, 2024
1 parent fdeab86 commit a986f58
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sdk/core/azure_core_amqp/src/messaging.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1462,11 +1462,11 @@ pub mod builders {
self
}
pub fn with_content_type(mut self, content_type: AmqpSymbol) -> Self {
self.properties.content_type = Some(content_type.into());
self.properties.content_type = Some(content_type);
self
}
pub fn with_content_encoding(mut self, content_encoding: AmqpSymbol) -> Self {
self.properties.content_encoding = Some(content_encoding.into());
self.properties.content_encoding = Some(content_encoding);
self
}
pub fn with_absolute_expiry_time(
Expand Down

0 comments on commit a986f58

Please sign in to comment.