Skip to content

Commit

Permalink
style(linting): remove needless type param T from minimalSetImpl
Browse files Browse the repository at this point in the history
  • Loading branch information
tetsuharuohzeki committed Nov 10, 2016
1 parent b3f6494 commit 5cfc138
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/Set.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export interface ISet<T> {
clear(): void;
}

export function minimalSetImpl<T>(): ISetCtor {
export function minimalSetImpl(): ISetCtor {
// THIS IS NOT a full impl of Set, this is just the minimum
// bits of functionality we need for this library.
return class MinimalSet<T> implements ISet<T> {
Expand Down

0 comments on commit 5cfc138

Please sign in to comment.