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

Commit 585d578a authored by Jeff Brown's avatar Jeff Brown Committed by Android (Google) Code Review
Browse files

Merge "Delete dead code."

parents 6bbaaa63 33901e60
Loading
Loading
Loading
Loading
+0 −15
Original line number Diff line number Diff line
@@ -338,21 +338,6 @@ int property_set(const char *name, const char *value)
    return 0;
}

static int property_list(void (*propfn)(const char *key, const char *value, void *cookie),
                  void *cookie)
{
    char name[PROP_NAME_MAX];
    char value[PROP_VALUE_MAX];
    const prop_info *pi;
    unsigned n;

    for(n = 0; (pi = __system_property_find_nth(n)); n++) {
        __system_property_read(pi, name, value);
        propfn(name, value, cookie);
    }
    return 0;
}

void handle_property_set_fd()
{
    prop_msg msg;