Skip to content

Commit

Permalink
fix(typings): make HotObservavle._subscribe protected
Browse files Browse the repository at this point in the history
  • Loading branch information
tetsuharuohzeki committed May 22, 2016
1 parent 14acc33 commit 1c3d6ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/testing/HotObservable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export class HotObservable<T> extends Subject<T> implements SubscriptionLoggable
this.scheduler = scheduler;
}

_subscribe(subscriber: Subscriber<any>): Subscription {
protected _subscribe(subscriber: Subscriber<any>): Subscription {
const subject: HotObservable<T> = this;
const index = subject.logSubscribedFrame();
subscriber.add(new Subscription(() => {
Expand Down

0 comments on commit 1c3d6ea

Please sign in to comment.