[vlc-commits] lua/http: remove stray debug output within VLM XML

Pierre Ynard git at videolan.org
Sat Aug 1 16:59:09 CEST 2020


vlc | branch: master | Pierre Ynard <linkfanel at yahoo.fr> | Sat Aug  1 16:51:22 2020 +0200| [70751ff62ab3a360e544004dba448a4e11c38d14] | committer: Pierre Ynard

lua/http: remove stray debug output within VLM XML

Refs #9590

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=70751ff62ab3a360e544004dba448a4e11c38d14
---

 share/lua/http/requests/vlm.xml | 7 -------
 1 file changed, 7 deletions(-)

diff --git a/share/lua/http/requests/vlm.xml b/share/lua/http/requests/vlm.xml
index df34e7f6d3..8e2e433d55 100644
--- a/share/lua/http/requests/vlm.xml
+++ b/share/lua/http/requests/vlm.xml
@@ -26,16 +26,9 @@ vim:syntax=lua
 ]]
 
 local function insert_children(c,t)
-  print(c.children)
     if c.children then
       for _, d in ipairs(c.children) do
         table.insert(t,d.value or d.name)
-        if d.value then
-        print("V"..d.value.."|")
-        end
-        if d.name then
-        print("N"..d.name.."|")
-        end
       end
     end
 end



More information about the vlc-commits mailing list