remove deprecated warning on startElement() Daniel

* legacy.c: remove deprecated warning on startElement()
Daniel
diff --git a/legacy.c b/legacy.c
index 5b635ff..9ed7413 100644
--- a/legacy.c
+++ b/legacy.c
@@ -1135,8 +1135,7 @@
 void
 startElement(void *ctx, const xmlChar * fullname, const xmlChar ** atts)
 {
-    DEPRECATED("startElement")
-        xmlSAX2StartElement(ctx, fullname, atts);
+    xmlSAX2StartElement(ctx, fullname, atts);
 }
 
 /**