cleanup(router): clang-format

This commit is contained in:
vsavkin
2016-06-09 14:33:09 -07:00
parent 9de56481f1
commit 2982892acc
8 changed files with 26 additions and 41 deletions

View File

@ -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})`; }
}