Skip to content

Commit 06d0479

Browse files
Philippe Branchuclaude
andcommitted
Fix clippy: remove needless borrow in line.rs
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 9f72d92 commit 06d0479

File tree

1 file changed

+1
-1
lines changed
  • crates/openfang-channels/src

1 file changed

+1
-1
lines changed

crates/openfang-channels/src/line.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ impl LineAdapter {
108108
diff |= a ^ b;
109109
}
110110
if diff != 0 {
111-
let computed = base64::engine::general_purpose::STANDARD.encode(&result);
111+
let computed = base64::engine::general_purpose::STANDARD.encode(result);
112112
// Log first/last 4 chars of each signature for debugging without leaking full HMAC
113113
let comp_redacted = format!(
114114
"{}...{}",

0 commit comments

Comments
 (0)