Skip to content

Commit 67b3f4a

Browse files
committed
chore: cleanup
1 parent 3ec0f75 commit 67b3f4a

File tree

1 file changed

+0
-17
lines changed

1 file changed

+0
-17
lines changed

src/ui-mapbox/common.ts

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -632,18 +632,10 @@ export interface MapboxApi {
632632

633633
onStart(nativeMap?: any): Promise<any>;
634634

635-
// onResume(nativeMap?: any): Promise<any>;
636-
637-
// onPause(nativeMap?: any): Promise<any>;
638-
639635
onStop(nativeMap?: any): Promise<any>;
640636

641-
// onLowMemory(nativeMap?: any): Promise<any>;
642-
643637
onDestroy(nativeMap?: any): Promise<any>;
644638

645-
// onSaveInstanceState( Bundle outState)
646-
647639
setMapStyle(style: string | MapStyle, nativeMap?: any): Promise<any>;
648640

649641
addMarkers(markers: MapboxMarker[], nativeMap?: any): Promise<any>;
@@ -1127,18 +1119,9 @@ export abstract class MapboxViewCommonBase extends ContentView implements Mapbox
11271119
onStart(): Promise<any> {
11281120
return this.mapbox?.onStart(this.getNativeMapView());
11291121
}
1130-
// onResume(nativeMap?: any): Promise<any> {
1131-
// return this.mapbox && this.mapbox.onResume(this.getNativeMapView());
1132-
// }
1133-
// onPause(nativeMap?: any): Promise<any> {
1134-
// return this.mapbox && this.mapbox.onPause(this.getNativeMapView());
1135-
// }
11361122
onStop(nativeMap?: any): Promise<any> {
11371123
return this.mapbox?.onStop(this.getNativeMapView());
11381124
}
1139-
// onLowMemory(nativeMap?: any): Promise<any> {
1140-
// return this.mapbox.onLowMemory(this.getNativeMapView());
1141-
// }
11421125
onDestroy(nativeMap?: any): Promise<any> {
11431126
return this.mapbox?.onDestroy(this.getNativeMapView());
11441127
}

0 commit comments

Comments
 (0)