File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -134,7 +134,7 @@ export class ScopeJson {
134134 }
135135
136136 trackLane ( trackLaneData : TrackLane ) {
137- const existing = this . _getTrackLane ( trackLaneData . localLane ) ;
137+ const existing = this . getTrackLane ( trackLaneData . localLane ) ;
138138 if ( existing ) {
139139 existing . remoteLane = trackLaneData . remoteLane ;
140140 existing . remoteScope = trackLaneData . remoteScope ;
@@ -150,7 +150,7 @@ export class ScopeJson {
150150 this . lanes . tracking . splice ( index , 1 ) ;
151151 this . hasChanged = true ;
152152 }
153- _getTrackLane ( localLane : string ) : TrackLane | undefined {
153+ private getTrackLane ( localLane : string ) : TrackLane | undefined {
154154 return this . lanes . tracking . find ( ( t ) => t . localLane === localLane ) ;
155155 }
156156 setLaneAsNew ( laneName : string ) {
You can’t perform that action at this time.
0 commit comments