-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(subscriber): Make Subscriber's internal methods protected
This change make these members `protected`: - `Subscriber._next()` - `Subscriber._error()` - `Subscriber._complete()` At current codebase, these members is only used in drived class of `Subscriber` or itself. Thus we should hide them from public. (If we need to make them public, then we should make them so).
- Loading branch information
1 parent
2dd771e
commit e7b2eb3
Showing
2 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters