Skip to content

Commit

Permalink
fix tslint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
tiagoschenkel committed Sep 24, 2017
1 parent ea578f5 commit 8613598
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export class SignalMap implements ISignalMap {
/* Protected Properties */
/*============================================================================*/

protected _handlersBySignal: Map<ISignal, Array<Function>>;
protected _handlersBySignal: Map<ISignal, Function[]>;

/*============================================================================*/
/* Constructor */
Expand Down Expand Up @@ -47,7 +47,7 @@ export class SignalMap implements ISignalMap {

if (
this._handlersBySignal[signal] == null ||
this._handlersBySignal[signal].length == 0
this._handlersBySignal[signal].length === 0
) {
return;
}
Expand Down

0 comments on commit 8613598

Please sign in to comment.