aboutsummaryrefslogtreecommitdiff
path: root/src/private/castable_factory
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2023-01-12 21:23:50 +0100
committerHampusM <hampus@hampusmat.com>2023-01-12 21:23:50 +0100
commit133069545b0f2a1fd28b44750934cab13be5a953 (patch)
tree005f119f1552dbf3c4619ecf2788536583d7b179 /src/private/castable_factory
parent9307d325a5a8aa1b49de12cc7ef384ab58f2eb9c (diff)
refactor: fix Clippy lint in threadsafe castable factory
Diffstat (limited to 'src/private/castable_factory')
-rw-r--r--src/private/castable_factory/threadsafe.rs5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/private/castable_factory/threadsafe.rs b/src/private/castable_factory/threadsafe.rs
index 3d2b653..871af9f 100644
--- a/src/private/castable_factory/threadsafe.rs
+++ b/src/private/castable_factory/threadsafe.rs
@@ -116,10 +116,7 @@ where
let ret = type_name::<TransientPtr<ReturnInterface>>();
- formatter.write_fmt(format_args!(
- "ThreadsafeCastableFactory ({}) -> {}",
- args, ret
- ))
+ formatter.write_fmt(format_args!("ThreadsafeCastableFactory ({args}) -> {ret}",))
}
}