From 19a5fed21cbcfc375ca338b0a19e2ee60465b00b Mon Sep 17 00:00:00 2001 From: Nick Pelly <> Date: Tue, 24 Mar 2009 18:51:06 -0700 Subject: [PATCH] Automated import from //branches/donutburger/...@140890,140890 --- core/java/android/server/BluetoothEventLoop.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/java/android/server/BluetoothEventLoop.java b/core/java/android/server/BluetoothEventLoop.java index 6be8eb96ba21d..6eabea461dec1 100644 --- a/core/java/android/server/BluetoothEventLoop.java +++ b/core/java/android/server/BluetoothEventLoop.java @@ -343,7 +343,7 @@ class BluetoothEventLoop { private void onPasskeyAgentCancel(String address) { address = address.toUpperCase(); - mPasskeyAgentRequestData.remove(address); + mBluetoothService.cancelPin(address); Intent intent = new Intent(BluetoothIntent.PAIRING_CANCEL_ACTION); intent.putExtra(BluetoothIntent.ADDRESS, address); mContext.sendBroadcast(intent, BLUETOOTH_ADMIN_PERM);