Skip to content

Commit

Permalink
Fix avsc file
Browse files Browse the repository at this point in the history
  • Loading branch information
allevo committed Mar 27, 2024
1 parent d96f4bf commit 1a95ea9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions benchmarks/e2e/public/avsc.js
Original file line number Diff line number Diff line change
Expand Up @@ -6907,8 +6907,8 @@
// Special case, empty record. We handle this directly.
body += ' return true;\n'
} else {
for (i = 0, l = this.fields.length; i < l; i++) {
field = this.fields[i]
for (let i = 0, l = this.fields.length; i < l; i++) {
let field = this.fields[i]
names.push('t' + i)
values.push(field.type)
if (field.defaultValue() !== undefined) {
Expand Down

0 comments on commit 1a95ea9

Please sign in to comment.