File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -86,8 +86,8 @@ export class MdSelectionList extends _MdSelectionListMixinBase
86
86
this . _tabIndex = - 1 ;
87
87
}
88
88
89
- this . _optionFocusSubscription = this . onFocusSubscription ( ) ;
90
- this . _optionDestroyStream = this . onDestroySubscription ( ) ;
89
+ this . _optionFocusSubscription = this . _onFocusSubscription ( ) ;
90
+ this . _optionDestroyStream = this . _onDestroySubscription ( ) ;
91
91
}
92
92
93
93
ngOnDestroy ( ) : void {
@@ -107,7 +107,7 @@ export class MdSelectionList extends _MdSelectionListMixinBase
107
107
/**
108
108
* Map all the options' destroy event subscriptions and merge them into one stream.
109
109
*/
110
- onDestroySubscription ( ) : Subscription {
110
+ private _onDestroySubscription ( ) : Subscription {
111
111
return RxChain . from ( this . options . changes )
112
112
. call ( startWith , this . options )
113
113
. call ( switchMap , ( options : MdListOption [ ] ) => {
@@ -129,7 +129,7 @@ export class MdSelectionList extends _MdSelectionListMixinBase
129
129
/**
130
130
* Map all the options' onFocus event subscriptions and merge them into one stream.
131
131
*/
132
- onFocusSubscription ( ) : Subscription {
132
+ private _onFocusSubscription ( ) : Subscription {
133
133
return RxChain . from ( this . options . changes )
134
134
. call ( startWith , this . options )
135
135
. call ( switchMap , ( options : MdListOption [ ] ) => {
You can’t perform that action at this time.
0 commit comments