Skip to content

Commit

Permalink
Merge pull request #1724 from saneyuki/make-protected-hotobservble-su…
Browse files Browse the repository at this point in the history
…bscribe

fix(typings): make HotObservavle._subscribe protected
  • Loading branch information
kwonoj committed May 23, 2016
2 parents 14acc33 + 1c3d6ea commit be2c298
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 be2c298

Please sign in to comment.