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

Commit 33901e60 authored by Jeff Brown's avatar Jeff Brown
Browse files

Delete dead code.

Change-Id: Icfb9bcee2c524026ecbeb7e30e943d8ca299a33a
parent 2992f181
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;