Skip to content

Commit f297f6b

Browse files
committed
refactor(client): remove unnecessary clone
1 parent b385f4f commit f297f6b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/client/legacy/client.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -633,7 +633,7 @@ where
633633
impl<C: Clone, B> Clone for Client<C, B> {
634634
fn clone(&self) -> Client<C, B> {
635635
Client {
636-
config: self.config.clone(),
636+
config: self.config,
637637
exec: self.exec.clone(),
638638
#[cfg(feature = "http1")]
639639
h1_builder: self.h1_builder.clone(),

0 commit comments

Comments
 (0)