diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-02-17 15:21:30 -0500 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-02-22 14:53:02 -0500 |
commit | c0d91bffc461c61af9d35aecb7c92e15648382b2 (patch) | |
tree | 4d74f1d6b08356ab96871b5278cd511ff33b0c2a /ext/bg/js/json-schema.js | |
parent | b3212d776e3f6d735bc9d67acbebc28b7f061ba8 (diff) |
Add no-shadow
Diffstat (limited to 'ext/bg/js/json-schema.js')
-rw-r--r-- | ext/bg/js/json-schema.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/bg/js/json-schema.js b/ext/bg/js/json-schema.js index 3cf24c35..58f804fd 100644 --- a/ext/bg/js/json-schema.js +++ b/ext/bg/js/json-schema.js @@ -401,7 +401,7 @@ class JsonSchemaProxyHandler { info.valuePush(i, propertyValue); JsonSchemaProxyHandler.validate(propertyValue, propertySchema, info); info.valuePop(); - for (let i = 0; i < schemaPath.length; ++i) { info.schemaPop(); } + for (let j = 0, jj = schemaPath.length; j < jj; ++j) { info.schemaPop(); } } } |