Skip to content

Commit

Permalink
Fix clippy lints
Browse files Browse the repository at this point in the history
  • Loading branch information
rcoh committed Apr 26, 2023
1 parent 28225af commit 81db0eb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion rust-runtime/aws-smithy-http/src/property_bag.rs
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ impl fmt::Debug for PropertyBag {
f.debug_list().entries(self.0.contents()).finish()
}
}
fmt.field("contents", &Contents(&self));
fmt.field("contents", &Contents(self));
fmt.finish()
}
}
Expand Down
4 changes: 2 additions & 2 deletions rust-runtime/aws-smithy-runtime-api/src/config_bag.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ impl Debug for ConfigBag {
}
}
f.debug_struct("ConfigBag")
.field("layers", &Layers(&self))
.field("layers", &Layers(self))
.finish()
}
}
Expand Down Expand Up @@ -90,7 +90,7 @@ impl Debug for Layer {
}
f.debug_struct("Layer")
.field("name", &self.name)
.field("properties", &Contents(&self))
.field("properties", &Contents(self))
.finish()
}
}
Expand Down

0 comments on commit 81db0eb

Please sign in to comment.