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

Commit 3984cf62 authored by Kweku Adams's avatar Kweku Adams
Browse files

Fixing typo in proto field.

Bug: 72814439
Bug: 74975371
Test: atest CtsIncidentHostTestCases:com.android.server.cts.UsbIncidentTest
Change-Id: Ia04c13b96bd1996e6e96f9b4e2e693af4cb97070
parent f0b9fbeb
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -88,7 +88,7 @@ message UsbDebuggingManagerProto {
    option (android.msg_privacy).dest = DEST_AUTOMATIC;

    optional bool connected_to_adb = 1;
    optional string last_key_recevied = 2 [ (android.privacy).dest = DEST_EXPLICIT ];
    optional string last_key_received = 2 [ (android.privacy).dest = DEST_EXPLICIT ];
    optional string user_keys = 3 [ (android.privacy).dest = DEST_LOCAL ];
    optional string system_keys = 4 [ (android.privacy).dest = DEST_LOCAL ];
}
+1 −1
Original line number Diff line number Diff line
@@ -461,7 +461,7 @@ public class UsbDebuggingManager {
        long token = dump.start(idName, id);

        dump.write("connected_to_adb", UsbDebuggingManagerProto.CONNECTED_TO_ADB, mThread != null);
        writeStringIfNotNull(dump, "last_key_received", UsbDebuggingManagerProto.LAST_KEY_RECEVIED,
        writeStringIfNotNull(dump, "last_key_received", UsbDebuggingManagerProto.LAST_KEY_RECEIVED,
                mFingerprints);

        try {