Fix Bond State Machine device list.

The device list was adding the device twice.
Note: This whole class should be removed and moved to
the stack.

Change-Id: I6086ee98bd1b4088a90b76f67a9fff21987f4b04
diff --git a/src/com/android/bluetooth/btservice/BondStateMachine.java b/src/com/android/bluetooth/btservice/BondStateMachine.java
index c6ae41a..b9232a2 100644
--- a/src/com/android/bluetooth/btservice/BondStateMachine.java
+++ b/src/com/android/bluetooth/btservice/BondStateMachine.java
@@ -90,7 +90,6 @@
         public void enter() {
             infoLog("Entering PendingCommandState State");
             BluetoothDevice dev = (BluetoothDevice)getCurrentMessage().obj;
-            mDevices.add(dev);
         }
 
         @Override