Merge "Remove some noisy logs by setting DEBUG = false" into sc-dev am: cdb4505020

Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/apps/Launcher3/+/14145143

Change-Id: I62630b9b55014f07f9ad10faa561f69cfa318d16
This commit is contained in:
TreeHugger Robot
2021-04-20 20:35:50 +00:00
committed by Automerger Merge Worker
5 changed files with 5 additions and 5 deletions
@@ -51,7 +51,7 @@ import java.util.List;
*/
public class AllAppsRecyclerView extends BaseRecyclerView {
private static final String TAG = "AllAppsContainerView";
private static final boolean DEBUG = true;
private static final boolean DEBUG = false;
private AlphabeticalAppsList mApps;
private final int mNumAppsPerRow;
@@ -48,7 +48,7 @@ import java.util.stream.Collectors;
public class FolderNameProvider implements ResourceBasedOverride {
private static final String TAG = "FolderNameProvider";
private static final boolean DEBUG = true;
private static final boolean DEBUG = false;
/**
* IME usually has up to 3 suggest slots. In total, there are 4 suggest slots as the folder
@@ -53,7 +53,7 @@ import java.util.HashSet;
public class GridSizeMigrationTask {
private static final String TAG = "GridSizeMigrationTask";
private static final boolean DEBUG = true;
private static final boolean DEBUG = false;
// These are carefully selected weights for various item types (Math.random?), to allow for
// the least absurd migration experience.
@@ -67,7 +67,7 @@ import java.util.Set;
public class GridSizeMigrationTaskV2 {
private static final String TAG = "GridSizeMigrationTaskV2";
private static final boolean DEBUG = true;
private static final boolean DEBUG = false;
private final Context mContext;
private final SQLiteDatabase mDb;
@@ -66,7 +66,7 @@ import java.util.Optional;
*/
public class ItemInfo {
public static final boolean DEBUG = true;
public static final boolean DEBUG = false;
public static final int NO_ID = -1;
/**