Skip to content

Commit

Permalink
refactor(do): Make DoSubscriber's menbers private.
Browse files Browse the repository at this point in the history
  • Loading branch information
tetsuharuohzeki authored and benlesh committed Jan 13, 2016
1 parent 8026906 commit a5927ba
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/operator/do.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ class DoOperator<T> implements Operator<T, T> {

class DoSubscriber<T> extends Subscriber<T> {

__next: (x: T) => void;
__error: (e: any) => void;
__complete: () => void;
private __next: (x: T) => void;
private __error: (e: any) => void;
private __complete: () => void;

constructor(destination: Subscriber<T>, next: (x: T) => void, error: (e: any) => void, complete: () => void) {
super(destination);
Expand Down

0 comments on commit a5927ba

Please sign in to comment.