Skip to content
This repository has been archived by the owner on Aug 12, 2022. It is now read-only.

Commit

Permalink
Removing no longer used FlowIssue
Browse files Browse the repository at this point in the history
  • Loading branch information
karelbilek committed Apr 18, 2016
1 parent 21e1970 commit 9b02569
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions lib/flow-events.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ export class Event0 {
return this.parent.emit(this.type);
}
listenerCount(): number {
/* $FlowIssue - https://github.com/facebook/flow/pull/1563 */
return this.parent.listenerCount(this.type);
}
}
Expand Down Expand Up @@ -57,7 +56,6 @@ export class Event1<T1> {
return this.parent.emit(this.type, arg1);
}
listenerCount(): number {
/* $FlowIssue - https://github.com/facebook/flow/pull/1563 */
return this.parent.listenerCount(this.type);
}
}
Expand Down Expand Up @@ -85,7 +83,6 @@ export class Event2<T1, T2> {
return this.parent.emit(this.type, arg1, arg2);
}
listenerCount(): number {
/* $FlowIssue - https://github.com/facebook/flow/pull/1563 */
return this.parent.listenerCount(this.type);
}
}

0 comments on commit 9b02569

Please sign in to comment.