Skip to content
This repository was archived by the owner on Aug 30, 2024. It is now read-only.

Commit 10bcb00

Browse files
change for loop to for/in loop
1 parent 8430973 commit 10bcb00

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

settings/sql_developer/trivadis_custom_format.arbori

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -729,7 +729,7 @@ i11_enforce_nonquoted_identifiers:
729729
var delpos = [];
730730
var hiddenTokenCount = 0;
731731
var conditionalBlock = false;
732-
for (i = 0; i < tokens.length; i++) {
732+
for (var i in tokens) {
733733
var type = tokens[i].type;
734734
if (type == Token.MACRO_SKIP) {
735735
var content = tokens[i].content.toLowerCase();

0 commit comments

Comments
 (0)