Fix unused variable warnings

- Remove unused keyData debug logging variables
- Clean up leftover debug logging comments
This commit is contained in:
jack
2025-07-05 21:36:59 +02:00
parent 463e94f379
commit dc9e7242fd
3 changed files with 6 additions and 10 deletions
+1 -2
View File
@@ -722,8 +722,7 @@ class BluetoothMeshService: NSObject {
// Encrypt the content
guard let contentData = content.data(using: .utf8) else { return }
// Debug logging
let keyData = roomKey.withUnsafeBytes { Data($0) }
// Debug logging removed
do {
let sealedBox = try AES.GCM.seal(contentData, using: roomKey)