mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
util.jsonschema: Remove wrapper function
This was to silence some Teal warning that seems to have gone away.
This commit is contained in:
parent
f0242ae57c
commit
597f3c7f0a
2 changed files with 0 additions and 14 deletions
|
@ -159,17 +159,10 @@ local function simple_validate(schema : json_type_name | { json_type_name }, dat
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
local complex_validate : function ( json_schema_object, any, json_schema_object ) : boolean
|
|
||||||
|
|
||||||
local function validate (schema : schema_t, data : any, root : json_schema_object) : boolean
|
local function validate (schema : schema_t, data : any, root : json_schema_object) : boolean
|
||||||
if schema is boolean then
|
if schema is boolean then
|
||||||
return schema
|
return schema
|
||||||
else
|
|
||||||
return complex_validate(schema, data, root)
|
|
||||||
end
|
end
|
||||||
end
|
|
||||||
|
|
||||||
function complex_validate (schema : json_schema_object, data : any, root : json_schema_object) : boolean
|
|
||||||
|
|
||||||
if root == nil then
|
if root == nil then
|
||||||
root = schema
|
root = schema
|
||||||
|
|
|
@ -43,17 +43,10 @@ local function simple_validate(schema, data)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
local complex_validate
|
|
||||||
|
|
||||||
local function validate(schema, data, root)
|
local function validate(schema, data, root)
|
||||||
if type(schema) == "boolean" then
|
if type(schema) == "boolean" then
|
||||||
return schema
|
return schema
|
||||||
else
|
|
||||||
return complex_validate(schema, data, root)
|
|
||||||
end
|
end
|
||||||
end
|
|
||||||
|
|
||||||
function complex_validate(schema, data, root)
|
|
||||||
|
|
||||||
if root == nil then
|
if root == nil then
|
||||||
root = schema
|
root = schema
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue