diff options
author | Andre Eisenbach <eisenbach@google.com> | 2014-06-30 11:37:05 -0700 |
---|---|---|
committer | Andre Eisenbach <eisenbach@google.com> | 2014-07-08 17:09:38 -0700 |
commit | d1e941c77cfdb59efac6040e52e6afde4c54068c (patch) | |
tree | 6d1573cb9c6b9fd56e811f85fc9ec085e325f8d1 /framework/java/android/bluetooth/BluetoothGatt.java | |
parent | b4c9d6108c2b2e895eb7817b661f1a544ace541a (diff) |
LE: Un-hide new congestion control and MTU APIs
Change-Id: I5ce395481620dd7ab611b1ab0eaeb5e29c4f13fa
Diffstat (limited to 'framework/java/android/bluetooth/BluetoothGatt.java')
-rw-r--r-- | framework/java/android/bluetooth/BluetoothGatt.java | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/framework/java/android/bluetooth/BluetoothGatt.java b/framework/java/android/bluetooth/BluetoothGatt.java index 4255cd46ec..8b7b0af9f7 100644 --- a/framework/java/android/bluetooth/BluetoothGatt.java +++ b/framework/java/android/bluetooth/BluetoothGatt.java @@ -86,9 +86,7 @@ public final class BluetoothGatt implements BluetoothProfile { /** A write operation exceeds the maximum length of the attribute */ public static final int GATT_INVALID_ATTRIBUTE_LENGTH = 0xd; - /** A remote device connection is congested. - * @hide - */ + /** A remote device connection is congested. */ public static final int GATT_CONNECTION_CONGESTED = 0x8f; /** A GATT operation failed, errors other than the above */ @@ -1263,7 +1261,6 @@ public final class BluetoothGatt implements BluetoothProfile { * <p>Requires {@link android.Manifest.permission#BLUETOOTH} permission. * * @return true, if the new MTU value has been requested successfully - * @hide */ public boolean configureMTU(int mtu) { if (DBG) Log.d(TAG, "configureMTU() - device: " + mDevice.getAddress() |