Skip to content

Commit

Permalink
refactor(dependencies): fix circular dependency issues
Browse files Browse the repository at this point in the history
  • Loading branch information
benlesh committed Jun 16, 2017
1 parent d7e8be7 commit 1304e85
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/observable/ConnectableObservable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { Operator } from '../Operator';
import { Observable } from '../Observable';
import { Subscriber } from '../Subscriber';
import { Subscription, TeardownLogic } from '../Subscription';
import { refCount as higherOrderRefCount } from '../operators';
import { refCount as higherOrderRefCount } from '../operators/refCount';

/**
* @class ConnectableObservable<T>
Expand Down
2 changes: 1 addition & 1 deletion src/observable/concat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { IScheduler } from '../Scheduler';
import { isScheduler } from '../util/isScheduler';
import { of } from './of';
import { from } from './from';
import { concatAll } from '../operators';
import { concatAll } from '../operators/concatAll';

/* tslint:disable:max-line-length */
export function concat<T>(v1: ObservableInput<T>, scheduler?: IScheduler): Observable<T>;
Expand Down

0 comments on commit 1304e85

Please sign in to comment.