Fixing nullpointer exception when accessing StatsLogger before initialization

Bug: 236227523
Test: Manual
Change-Id: I2caaa143ab2ddd4442d5c56152c7b4a7c723b92b
This commit is contained in:
Sunny Goyal
2022-06-27 13:15:41 -07:00
parent 4a0129fa5f
commit 977838b568
2 changed files with 2 additions and 2 deletions

View File

@@ -77,8 +77,8 @@ public abstract class BaseActivity extends Activity implements AppLauncher,
new ArrayList<>();
protected DeviceProfile mDeviceProfile;
protected StatsLogManager mStatsLogManager;
protected SystemUiController mSystemUiController;
private StatsLogManager mStatsLogManager;
public static final int ACTIVITY_STATE_STARTED = 1 << 0;