cleanup(router): clang-format
This commit is contained in:
@ -71,7 +71,5 @@ function contains<T>(tree: TreeNode<T>, subtree: TreeNode<T>): boolean {
|
||||
export class TreeNode<T> {
|
||||
constructor(public value: T, public children: TreeNode<T>[]) {}
|
||||
|
||||
toString(): string {
|
||||
return `TreeNode(${this.value})`;
|
||||
}
|
||||
toString(): string { return `TreeNode(${this.value})`; }
|
||||
}
|
Reference in New Issue
Block a user