@@ -472,7 +472,7 @@ export class BreakpointManager extends Common.ObjectWrapper.ObjectWrapper<EventT
472472 this . dispatchEventToListeners ( Events . BreakpointAdded , breakpointLocation ) ;
473473 }
474474
475- uiLocationRemoved ( breakpoint : Breakpoint , uiLocation : Workspace . UISourceCode . UILocation ) : void {
475+ uiLocationRemoved ( uiLocation : Workspace . UISourceCode . UILocation ) : void {
476476 const breakpoints = this . #breakpointsForUISourceCode. get ( uiLocation . uiSourceCode ) ;
477477 if ( ! breakpoints ) {
478478 return ;
@@ -707,7 +707,7 @@ export class Breakpoint implements SDK.TargetManager.SDKModelObserver<SDK.Debugg
707707 this . uiSourceCodes . delete ( uiSourceCode ) ;
708708 this . breakpointManager . removeHomeUISourceCode ( uiSourceCode , this ) ;
709709 if ( ! this . bound ( ) ) {
710- this . breakpointManager . uiLocationRemoved ( this , this . defaultUILocation ( uiSourceCode ) ) ;
710+ this . breakpointManager . uiLocationRemoved ( this . defaultUILocation ( uiSourceCode ) ) ;
711711 }
712712 }
713713
@@ -716,7 +716,7 @@ export class Breakpoint implements SDK.TargetManager.SDKModelObserver<SDK.Debugg
716716 for ( const uiLocation of this . #uiLocations) {
717717 if ( uiLocation . uiSourceCode === uiSourceCode ) {
718718 this . #uiLocations. delete ( uiLocation ) ;
719- this . breakpointManager . uiLocationRemoved ( this , uiLocation ) ;
719+ this . breakpointManager . uiLocationRemoved ( uiLocation ) ;
720720 }
721721 }
722722
@@ -754,7 +754,7 @@ export class Breakpoint implements SDK.TargetManager.SDKModelObserver<SDK.Debugg
754754 uiLocationRemoved ( uiLocation : Workspace . UISourceCode . UILocation ) : void {
755755 if ( this . #uiLocations. has ( uiLocation ) ) {
756756 this . #uiLocations. delete ( uiLocation ) ;
757- this . breakpointManager . uiLocationRemoved ( this , uiLocation ) ;
757+ this . breakpointManager . uiLocationRemoved ( uiLocation ) ;
758758 if ( ! this . bound ( ) && ! this . isRemoved ) {
759759 this . addAllUnboundLocations ( ) ;
760760 }
@@ -878,7 +878,7 @@ export class Breakpoint implements SDK.TargetManager.SDKModelObserver<SDK.Debugg
878878
879879 private removeAllUnboundLocations ( ) : void {
880880 for ( const uiSourceCode of this . uiSourceCodes ) {
881- this . breakpointManager . uiLocationRemoved ( this , this . defaultUILocation ( uiSourceCode ) ) ;
881+ this . breakpointManager . uiLocationRemoved ( this . defaultUILocation ( uiSourceCode ) ) ;
882882 }
883883 }
884884
0 commit comments