Skip to content

Commit

Permalink
fix(): change subject access modifier to protected
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilmysliwiec committed May 13, 2020
1 parent d4f9e2d commit cbb7220
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/observable-bus.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Observable, Subject } from 'rxjs';

export class ObservableBus<T> extends Observable<T> {
private _subject$ = new Subject<T>();
protected _subject$ = new Subject<T>();

constructor() {
super();
Expand Down

0 comments on commit cbb7220

Please sign in to comment.