Fix build.

Method setTrust was removed from BluetoothDevice.java which caused build breakage.

Change-Id: Ie02422c3b77605ecc84f315ba7c0e1845ccc0274
diff --git a/Common/src/com/googlecode/android_scripting/facade/bluetooth/BluetoothConnectionFacade.java b/Common/src/com/googlecode/android_scripting/facade/bluetooth/BluetoothConnectionFacade.java
index a76c30a..95e44b0 100644
--- a/Common/src/com/googlecode/android_scripting/facade/bluetooth/BluetoothConnectionFacade.java
+++ b/Common/src/com/googlecode/android_scripting/facade/bluetooth/BluetoothConnectionFacade.java
@@ -381,7 +381,6 @@
             String deviceID) throws Exception {
         BluetoothDevice mDevice = BluetoothFacade.getDevice(mBluetoothAdapter.getBondedDevices(),
                 deviceID);
-        mDevice.setTrust(true);
         connectProfile(mDevice, deviceID);
     }