Skip to content
This repository has been archived by the owner on Aug 8, 2023. It is now read-only.

Remove request render from MapboxMap#onStart #14245

Merged
merged 2 commits into from
Mar 27, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,6 @@ public Style getStyle() {
* Called when the hosting Activity/Fragment onStart() method is called.
*/
void onStart() {
nativeMapView.update();
locationComponent.onStart();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,6 @@ interface NativeMap {
// Lifecycle API
//

void update();

void resizeView(int width, int height);

void onLowMemory();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,15 +135,6 @@ public void destroy() {
nativeDestroy();
}

@Override
public void update() {
if (checkState("update")) {
return;
}

mapRenderer.requestRender();
}

@Override
public void resizeView(int width, int height) {
if (checkState("resizeView")) {
Expand Down