diff options
author | HampusM <hampus@hampusmat.com> | 2023-01-12 21:23:50 +0100 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2023-01-12 21:23:50 +0100 |
commit | 133069545b0f2a1fd28b44750934cab13be5a953 (patch) | |
tree | 005f119f1552dbf3c4619ecf2788536583d7b179 /src/private/castable_factory | |
parent | 9307d325a5a8aa1b49de12cc7ef384ab58f2eb9c (diff) |
refactor: fix Clippy lint in threadsafe castable factory
Diffstat (limited to 'src/private/castable_factory')
-rw-r--r-- | src/private/castable_factory/threadsafe.rs | 5 |
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}",)) } } |