Skip to content

Commit 826cdfc

Browse files
committed
remove walk function
Signed-off-by: flakey5 <[email protected]>
1 parent ee9b725 commit 826cdfc

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

src/generators/json/utils/parameter-tree.mjs

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -128,16 +128,6 @@ export class ParameterTree {
128128
)
129129
);
130130
}
131-
132-
/**
133-
*
134-
* @param indent
135-
*/
136-
walk(indent = 0) {
137-
console.log(' '.repeat(indent), 'parameters:', this.#parameters);
138-
console.log(' '.repeat(indent), 'children:');
139-
this.#children.map(child => child.walk(indent + 1));
140-
}
141131
}
142132

143133
/**

0 commit comments

Comments
 (0)