elput: Remove erroneous debug print out
authorChris Michael <cpmichael@osg.samsung.com>
Mon, 9 May 2016 15:05:21 +0000 (11:05 -0400)
committerChris Michael <cpmichael@osg.samsung.com>
Mon, 9 May 2016 15:05:21 +0000 (11:05 -0400)
NB: No functional changes, just cleanup of extra debug message and
commented out codeblock

Signed-off-by: Chris Michael <cpmichael@osg.samsung.com>
src/lib/elput/elput_input.c
src/lib/elput/elput_logind.c

index d50b023..8a15694 100644 (file)
@@ -137,18 +137,12 @@ _device_add(Elput_Manager *em, struct libinput_device *dev)
 static void
 _device_remove(Elput_Manager *em EINA_UNUSED, struct libinput_device *device)
 {
-   /* Elput_Seat *eseat; */
    Elput_Device *edev;
 
    edev = libinput_device_get_user_data(device);
    if (!edev) return;
 
-   /* eseat = _udev_seat_get(em, device); */
-   /* if (eseat) */
-   /*   eseat->devices = eina_list_remove(eseat->devices, edev); */
-
    _device_event_send(edev, ELPUT_DEVICE_REMOVED);
-   /* _evdev_device_destroy(edev); */
 }
 
 static int
index aedcd79..123861a 100644 (file)
@@ -140,8 +140,6 @@ _cb_property_changed(void *data, Eldbus_Proxy *proxy EINA_UNUSED, void *event)
    em = data;
    ev = event;
 
-   DBG("DBus Property Changed: %s", ev->name);
-
    if (!strcmp(ev->name, "Active"))
      {
         eina_value_get(ev->value, &active);