Skip to content

Commit

Permalink
fix(operators): Remove shareReplay and shareBehavior
Browse files Browse the repository at this point in the history
Remove two operators that were reintroduced by mistake. shareReplay and shareBehavior should not
exist anymore.

Resolves issue ReactiveX#710.
  • Loading branch information
staltz committed Nov 12, 2015
1 parent 92a247d commit 536a6a6
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 50 deletions.
20 changes: 0 additions & 20 deletions perf/micro/immediate-scheduler/operators/sharebehavior.js

This file was deleted.

20 changes: 0 additions & 20 deletions perf/micro/immediate-scheduler/operators/sharereplay.js

This file was deleted.

2 changes: 0 additions & 2 deletions src/Observable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -216,8 +216,6 @@ export class Observable<T> implements CoreOperators<T> {
sampleTime: (delay: number, scheduler?: Scheduler) => Observable<T>;
scan: <R>(project: (acc: R, x: T) => R, acc?: R) => Observable<R>;
share: () => Observable<T>;
shareBehavior: (value: T) => Observable<T>;
shareReplay: (bufferSize: number, windowTime: number, scheduler?: Scheduler) => Observable<T>;
single: (predicate?: (value: T, index: number) => boolean, thisArg?: any) => Observable<T>;
skip: (count: number) => Observable<T>;
skipUntil: (notifier: Observable<any>) => Observable<T>;
Expand Down
8 changes: 0 additions & 8 deletions src/operators/shareReplay.ts

This file was deleted.

0 comments on commit 536a6a6

Please sign in to comment.