Skip to content

Commit

Permalink
chore(associative): remove obsolete comments
Browse files Browse the repository at this point in the history
  • Loading branch information
postspectacular committed Mar 28, 2020
1 parent 49024f7 commit 115651f
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 9 deletions.
3 changes: 0 additions & 3 deletions packages/associative/src/array-set.ts
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,4 @@ export class ArraySet<T> extends Set<T> implements IEquivSet<T> {
opts(): EquivSetOpts<T> {
return { equiv: __private.get(this)!.equiv };
}
// [INSPECT](depth: number, opts: any) {
// return inspectSet(this, depth, opts);
// }
}
3 changes: 0 additions & 3 deletions packages/associative/src/ll-set.ts
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,4 @@ export class LLSet<T> extends Set<T> implements IEquivSet<T> {
opts(): EquivSetOpts<T> {
return { equiv: __private.get(this)!.equiv };
}
// [INSPECT](depth: number, opts: any) {
// return inspectSet(this, depth, opts);
// }
}
3 changes: 0 additions & 3 deletions packages/associative/src/sorted-set.ts
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,4 @@ export class SortedSet<T> extends Set<T>
opts(): SortedSetOpts<T> {
return __private.get(this)!.opts();
}
// [INSPECT](depth: number, opts: any) {
// return inspectSet(this, depth, opts);
// }
}

0 comments on commit 115651f

Please sign in to comment.