From: Jo-Philipp Wich Date: Sun, 8 Jan 2012 23:39:29 +0000 (+0000) Subject: libs/web: remove debugging code X-Git-Tag: 0.11.0~1182 X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fluci.git;a=commitdiff_plain;h=a4996261eaa0b2057967e5eb855005a3403a6cb0 libs/web: remove debugging code --- diff --git a/libs/web/luasrc/cbi.lua b/libs/web/luasrc/cbi.lua index e885e4e28..ef45a8956 100644 --- a/libs/web/luasrc/cbi.lua +++ b/libs/web/luasrc/cbi.lua @@ -1432,13 +1432,11 @@ function AbstractValue.validate(self, value) local v for _, v in ipairs(value) do if v and #v > 0 and not verify_datatype(self.datatype, v) then - error('F') return nil end end else if not verify_datatype(self.datatype, value) then - error('F') return nil end end diff --git a/libs/web/luasrc/cbi/datatypes.lua b/libs/web/luasrc/cbi/datatypes.lua index 6d8715734..71f4a2a56 100644 --- a/libs/web/luasrc/cbi/datatypes.lua +++ b/libs/web/luasrc/cbi/datatypes.lua @@ -29,7 +29,6 @@ _M['or'] = function(v, ...) local f = select(i, ...) local a = select(i+1, ...) if type(f) ~= "function" then - print("COMP", f, v) if f == v then return true end