Skip to content
This repository was archived by the owner on Apr 20, 2018. It is now read-only.

Commit bb018c8

Browse files
Dead code removal in mergeall
1 parent e73e312 commit bb018c8

25 files changed

Lines changed: 49 additions & 58 deletions

dist/rx.all.compat.js

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3757,7 +3757,7 @@ var FlatMapObservable = (function(__super__){
37573757
m.setDisposable(this.source.subscribe(new MergeAllObserver(observer, g)));
37583758
return g;
37593759
};
3760-
3760+
37613761
function MergeAllObserver(o, g) {
37623762
this.o = o;
37633763
this.g = g;
@@ -3771,7 +3771,7 @@ var FlatMapObservable = (function(__super__){
37713771

37723772
isPromise(innerSource) && (innerSource = observableFromPromise(innerSource));
37733773

3774-
sad.setDisposable(innerSource.subscribe(new InnerObserver(this, this.g, sad)));
3774+
sad.setDisposable(innerSource.subscribe(new InnerObserver(this, sad)));
37753775
};
37763776
MergeAllObserver.prototype.onError = function (e) {
37773777
if(!this.isStopped) {
@@ -3797,9 +3797,8 @@ var FlatMapObservable = (function(__super__){
37973797
return false;
37983798
};
37993799

3800-
function InnerObserver(parent, g, sad) {
3800+
function InnerObserver(parent, sad) {
38013801
this.parent = parent;
3802-
this.g = g;
38033802
this.sad = sad;
38043803
this.isStopped = false;
38053804
}

dist/rx.all.compat.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/rx.all.compat.min.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/rx.all.js

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3612,7 +3612,7 @@ var FlatMapObservable = (function(__super__){
36123612
m.setDisposable(this.source.subscribe(new MergeAllObserver(observer, g)));
36133613
return g;
36143614
};
3615-
3615+
36163616
function MergeAllObserver(o, g) {
36173617
this.o = o;
36183618
this.g = g;
@@ -3626,7 +3626,7 @@ var FlatMapObservable = (function(__super__){
36263626

36273627
isPromise(innerSource) && (innerSource = observableFromPromise(innerSource));
36283628

3629-
sad.setDisposable(innerSource.subscribe(new InnerObserver(this, this.g, sad)));
3629+
sad.setDisposable(innerSource.subscribe(new InnerObserver(this, sad)));
36303630
};
36313631
MergeAllObserver.prototype.onError = function (e) {
36323632
if(!this.isStopped) {
@@ -3652,9 +3652,8 @@ var FlatMapObservable = (function(__super__){
36523652
return false;
36533653
};
36543654

3655-
function InnerObserver(parent, g, sad) {
3655+
function InnerObserver(parent, sad) {
36563656
this.parent = parent;
3657-
this.g = g;
36583657
this.sad = sad;
36593658
this.isStopped = false;
36603659
}

dist/rx.all.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/rx.all.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/rx.compat.js

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3671,7 +3671,7 @@ var FlatMapObservable = (function(__super__){
36713671
m.setDisposable(this.source.subscribe(new MergeAllObserver(observer, g)));
36723672
return g;
36733673
};
3674-
3674+
36753675
function MergeAllObserver(o, g) {
36763676
this.o = o;
36773677
this.g = g;
@@ -3685,7 +3685,7 @@ var FlatMapObservable = (function(__super__){
36853685

36863686
isPromise(innerSource) && (innerSource = observableFromPromise(innerSource));
36873687

3688-
sad.setDisposable(innerSource.subscribe(new InnerObserver(this, this.g, sad)));
3688+
sad.setDisposable(innerSource.subscribe(new InnerObserver(this, sad)));
36893689
};
36903690
MergeAllObserver.prototype.onError = function (e) {
36913691
if(!this.isStopped) {
@@ -3711,9 +3711,8 @@ var FlatMapObservable = (function(__super__){
37113711
return false;
37123712
};
37133713

3714-
function InnerObserver(parent, g, sad) {
3714+
function InnerObserver(parent, sad) {
37153715
this.parent = parent;
3716-
this.g = g;
37173716
this.sad = sad;
37183717
this.isStopped = false;
37193718
}

dist/rx.compat.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/rx.compat.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/rx.js

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3561,7 +3561,7 @@ var FlatMapObservable = (function(__super__){
35613561
m.setDisposable(this.source.subscribe(new MergeAllObserver(observer, g)));
35623562
return g;
35633563
};
3564-
3564+
35653565
function MergeAllObserver(o, g) {
35663566
this.o = o;
35673567
this.g = g;
@@ -3575,7 +3575,7 @@ var FlatMapObservable = (function(__super__){
35753575

35763576
isPromise(innerSource) && (innerSource = observableFromPromise(innerSource));
35773577

3578-
sad.setDisposable(innerSource.subscribe(new InnerObserver(this, this.g, sad)));
3578+
sad.setDisposable(innerSource.subscribe(new InnerObserver(this, sad)));
35793579
};
35803580
MergeAllObserver.prototype.onError = function (e) {
35813581
if(!this.isStopped) {
@@ -3601,9 +3601,8 @@ var FlatMapObservable = (function(__super__){
36013601
return false;
36023602
};
36033603

3604-
function InnerObserver(parent, g, sad) {
3604+
function InnerObserver(parent, sad) {
36053605
this.parent = parent;
3606-
this.g = g;
36073606
this.sad = sad;
36083607
this.isStopped = false;
36093608
}

0 commit comments

Comments
 (0)