diff options
author | Andre Eisenbach <andre@broadcom.com> | 2013-03-08 18:42:24 -0800 |
---|---|---|
committer | Matthew Xie <mattx@google.com> | 2013-03-12 10:53:56 -0700 |
commit | 137ce5ad1b743fef120f41dd3a8641502d83f3fb (patch) | |
tree | 740faa815a5c09f3f1c166d38ce527160566fe0b /framework/java/android/bluetooth/BluetoothGattServer.java | |
parent | d6f9701119db423333a50bfa286968cdb880512f (diff) |
Fixed 32 bit characteristic value assignment
Also fixed link in comment.
Change-Id: I27223b8aadae2fc7c8037abc6396760e23f6f161
Diffstat (limited to 'framework/java/android/bluetooth/BluetoothGattServer.java')
-rw-r--r-- | framework/java/android/bluetooth/BluetoothGattServer.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/java/android/bluetooth/BluetoothGattServer.java b/framework/java/android/bluetooth/BluetoothGattServer.java index 91a1a9443f..6b69377915 100644 --- a/framework/java/android/bluetooth/BluetoothGattServer.java +++ b/framework/java/android/bluetooth/BluetoothGattServer.java @@ -534,7 +534,7 @@ public final class BluetoothGattServer implements BluetoothProfile { * * <p>The connection may not be established right away, but will be * completed when the remote device is available. A - * {@link BluetoothGattCallback#onConnectionStateChange} callback will be + * {@link BluetoothGattServerCallback#onConnectionStateChange} callback will be * invoked when the connection state changes as a result of this function. * * <p>The autoConnect paramter determines whether to actively connect to @@ -553,7 +553,7 @@ public final class BluetoothGattServer implements BluetoothProfile { * @return true, if the connection attempt was initiated successfully */ public boolean connect(BluetoothDevice device, boolean autoConnect) { - if (DBG) Log.d(TAG, "connect: " + device.getAddress() + ", auto: " + autoConnect); + if (DBG) Log.d(TAG, "connect() - device: " + device.getAddress() + ", auto: " + autoConnect); if (mService == null || mServerIf == 0) return false; try { |