summaryrefslogtreecommitdiff
path: root/src/bin/eldbus
diff options
context:
space:
mode:
authorCarsten Haitzler (Rasterman) <raster@rasterman.com>2017-07-29 00:47:08 +0900
committerCarsten Haitzler (Rasterman) <raster@rasterman.com>2017-07-29 09:08:40 +0900
commitaab56c412310dd90438b2dbc3be2bf79cc5f5ae4 (patch)
tree8d3409fe06d9850a64e02574de9887d2362a8446 /src/bin/eldbus
parent302731e1af526cd04bb01ef479d46484fd3df58a (diff)
downloadefl-aab56c412310dd90438b2dbc3be2bf79cc5f5ae4.tar.gz
eldbus parser - remove duplicate tag handler thats already handled
confusing and dead code as it's already handled. not an actual bug but analysis impacting found by PVS studio
Diffstat (limited to 'src/bin/eldbus')
-rw-r--r--src/bin/eldbus/parser.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/bin/eldbus/parser.c b/src/bin/eldbus/parser.c
index a74ff07b41..395bf57104 100644
--- a/src/bin/eldbus/parser.c
+++ b/src/bin/eldbus/parser.c
@@ -429,8 +429,6 @@ open_tag(const char *content, unsigned length, Eina_Bool is_open_empty, DBus_Obj
return open_method(content, length, is_open_empty);
else if (!strncmp(content, PROPERTY_TAG, PROPERTY_TAG_LENGTH) && iface)
return open_property(content, length);
- else if (!strncmp(content, ANNOTATION_TAG, ANNOTATION_TAG_LENGTH) && iface)
- return EINA_TRUE;
printf("Warning: Tag not handled:\n");
for (i = 0; i < length; i++)