From 3e4c9f38e03f06755b7b034277bc28e5ebbd960e Mon Sep 17 00:00:00 2001 From: Suphon Thanakornpakapong Date: Wed, 18 May 2022 18:31:24 +0700 Subject: [PATCH] Remove excess debug log --- src/com/android/launcher3/InvariantDeviceProfile.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/com/android/launcher3/InvariantDeviceProfile.java b/src/com/android/launcher3/InvariantDeviceProfile.java index ca135edfd5..117dc61f09 100644 --- a/src/com/android/launcher3/InvariantDeviceProfile.java +++ b/src/com/android/launcher3/InvariantDeviceProfile.java @@ -321,7 +321,6 @@ public class InvariantDeviceProfile { @DeviceType int deviceType) { DeviceProfileOverrides.Options overrideOptions = DeviceProfileOverrides.INSTANCE.get(context) .getOverrides(displayOption.grid); - Log.d("MigrationDebug", "initGrid"); initGrid(context, displayInfo, displayOption, deviceType, overrideOptions); } @@ -434,11 +433,9 @@ public class InvariantDeviceProfile { private void onConfigChanged(Context context) { Object[] oldState = toModelState(); - Log.d("MigrationDebug", "onConfigChanged"); // Re-init grid String gridName = getCurrentGridName(context); initGrid(context, gridName); - Log.d("MigrationDebug", "init grid done"); boolean modelPropsChanged = !Arrays.equals(oldState, toModelState()); for (OnIDPChangeListener listener : mChangeListeners) {