summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher3/provider/LossyScreenMigrationTask.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/launcher3/provider/LossyScreenMigrationTask.java')
-rw-r--r--src/com/android/launcher3/provider/LossyScreenMigrationTask.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/com/android/launcher3/provider/LossyScreenMigrationTask.java b/src/com/android/launcher3/provider/LossyScreenMigrationTask.java
index bb6ed0de9..4addbfa23 100644
--- a/src/com/android/launcher3/provider/LossyScreenMigrationTask.java
+++ b/src/com/android/launcher3/provider/LossyScreenMigrationTask.java
@@ -47,8 +47,9 @@ public class LossyScreenMigrationTask extends GridSizeMigrationTask {
protected LossyScreenMigrationTask(
Context context, InvariantDeviceProfile idp, SQLiteDatabase db) {
// Decrease the rows count by 1
- super(context, idp, getValidPackages(context), new HashMap<String, Point>(),
- new Point(idp.numColumns, idp.numRows + 1), new Point(idp.numColumns, idp.numRows));
+ super(context, idp, getValidPackages(context),
+ new Point(idp.numColumns, idp.numRows + 1),
+ new Point(idp.numColumns, idp.numRows));
mDb = db;
mOriginalItems = new LongArrayMap<>();