Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e2ad3574 authored by Achim Thesmann's avatar Achim Thesmann
Browse files

Fix Unsafe Parcel Usage

This is a manual fix.
Please review with caution.

Bug: 439097174
Test: build only
Flag: EXEMPT refactor
Change-Id: I96f87304042e7e75e4f7a2372b4a27a36b729fc1
parent 43363b14
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -436,8 +436,8 @@ public class AppWidgetHostView extends FrameLayout implements AppWidgetHost.AppW
            maxHeight = Math.max(maxHeight, paddedSize.getHeight());
        }
        if (paddedSizes.equals(
                widgetManager.getAppWidgetOptions(mAppWidgetId).<SizeF>getParcelableArrayList(
                        AppWidgetManager.OPTION_APPWIDGET_SIZES))) {
                widgetManager.getAppWidgetOptions(mAppWidgetId).getParcelableArrayList(
                        AppWidgetManager.OPTION_APPWIDGET_SIZES, SizeF.class))) {
            return;
        }
        Bundle options = newOptions.deepCopy();