Fix missing parameter assignment for CallbackInfo

Test: none
Change-Id: I7beb8b48a3e0ac6ef6c348d4a2e016220b979d40
diff --git a/android/app/src/com/android/bluetooth/gatt/CallbackInfo.java b/android/app/src/com/android/bluetooth/gatt/CallbackInfo.java
index f6035b3..ab3fe4e 100644
--- a/android/app/src/com/android/bluetooth/gatt/CallbackInfo.java
+++ b/android/app/src/com/android/bluetooth/gatt/CallbackInfo.java
@@ -20,9 +20,7 @@
  * These are held during congestion and reported when congestion clears.
  * @hide
  */
-/*package*/
-
-class CallbackInfo {
+/* package */ class CallbackInfo {
     public String address;
     public int status;
     public int handle;
@@ -58,6 +56,6 @@
         this.address = address;
         this.status = status;
         this.handle = handle;
+        this.value = value;
     }
 }
-