diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2008-08-09 16:37:34 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2008-08-09 16:37:34 +0000 |
commit | ba7b178943d3c0d67559f83cb30c0a555161e668 (patch) | |
tree | 717999df445af7a4dc2ba45863ac7d73ef0947fd /contrib | |
parent | d8ed736906b838eedaf946d640beee549a10df8b (diff) |
* luci/contrib: remove remaining debugging code from luadoc
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/luadoc/lua/luadoc/doclet/html.lua | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/contrib/luadoc/lua/luadoc/doclet/html.lua b/contrib/luadoc/lua/luadoc/doclet/html.lua index 630c6c475..a94e1983f 100644 --- a/contrib/luadoc/lua/luadoc/doclet/html.lua +++ b/contrib/luadoc/lua/luadoc/doclet/html.lua @@ -20,7 +20,6 @@ local luadoc = require"luadoc" local package = package local string = require"string" local table = require"table" -local luciutil = require "luci.util" module "luadoc.doclet.html" @@ -138,8 +137,6 @@ function link_to (fname, doc, module_doc, file_doc, from, kind) from = from or "" kind = kind or "functions" - --luciutil.dumptable( module_doc ) - if file_doc then for _, func_name in pairs(file_doc[kind]) do if func_name == fname then |