Merge "Merge "Fix crash when changing navigation modes" into qt-dev am: 2abd554786 am: 5c3086add5" into qt-r1-dev-plus-aosp

This commit is contained in:
Android Build Merger (Role)
2019-05-29 02:48:30 +00:00
committed by Android (Google) Code Review

View File

@@ -66,7 +66,9 @@ public class RotationContextButton extends ContextualButton implements
@Override @Override
public void onDestroy() { public void onDestroy() {
mRotationButtonController.cleanUp(); if (mRotationButtonController != null) {
mRotationButtonController.cleanUp();
}
} }
@Override @Override