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

Commit 1271b019 authored by Mike Lockwood's avatar Mike Lockwood Committed by Android Git Automerger
Browse files

am eedc5f35: adb: remove obsolete adb.connected system property.

parents e572e9c7 eedc5f35
Loading
Loading
Loading
Loading
+0 −6
Original line number Diff line number Diff line
@@ -144,9 +144,6 @@ void put_apacket(apacket *p)
void handle_online(void)
{
    D("adb: online\n");
#if !ADB_HOST
    property_set("adb.connected","1");
#endif
}

void handle_offline(atransport *t)
@@ -154,9 +151,6 @@ void handle_offline(atransport *t)
    D("adb: offline\n");
    //Close the associated usb
    run_transport_disconnects(t);
#if !ADB_HOST
    property_set("adb.connected","");
#endif
}

#if TRACE_PACKETS