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

Commit f55226ed authored by Ömer Faruk Yılmaz's avatar Ömer Faruk Yılmaz Committed by Android (Google) Code Review
Browse files

Merge "Fix missing parameter assignment for CallbackInfo" into tm-qpr-dev

parents 4800f2bf 9902b829
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;
    }
}