Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9902b829 authored by Ömer Faruk Yılmaz's avatar Ömer Faruk Yılmaz
Browse files

Fix missing parameter assignment for CallbackInfo

Bug: 237467631
Test: none
Change-Id: I7beb8b48a3e0ac6ef6c348d4a2e016220b979d40
(cherry picked from commit f1554965)
parent d59ab29d
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -20,9 +20,7 @@ package com.android.bluetooth.gatt;
 * 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 @@ class CallbackInfo {
        this.address = address;
        this.status = status;
        this.handle = handle;
        this.value = value;
    }
}