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

Commit bcbe8d19 authored by android-build-team Robot's avatar android-build-team Robot Committed by android-build-merger
Browse files

Merge changes I5851dd16,Id196307f into pi-dev

am: 8d6571ae

Change-Id: If389a3822b5bd51e4b714c1dde5cf17122d3ce8e
parents 183b78b0 8d6571ae
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -261,6 +261,7 @@ public final class OverlayInfo implements Parcelable {
        result = prime * result + state;
        result = prime * result + ((packageName == null) ? 0 : packageName.hashCode());
        result = prime * result + ((targetPackageName == null) ? 0 : targetPackageName.hashCode());
        result = prime * result + ((category == null) ? 0 : category.hashCode());
        result = prime * result + ((baseCodePath == null) ? 0 : baseCodePath.hashCode());
        return result;
    }
+2 −3
Original line number Diff line number Diff line
@@ -680,7 +680,7 @@ public final class OverlayManagerService extends SystemService {
         * @throws SecurityException if the permission check fails
         */
        private void enforceChangeOverlayPackagesPermission(@NonNull final String message) {
            getContext().enforceCallingOrSelfPermission(
            getContext().enforceCallingPermission(
                    android.Manifest.permission.CHANGE_OVERLAY_PACKAGES, message);
        }

@@ -691,8 +691,7 @@ public final class OverlayManagerService extends SystemService {
         * @throws SecurityException if the permission check fails
         */
        private void enforceDumpPermission(@NonNull final String message) {
            getContext().enforceCallingOrSelfPermission(android.Manifest.permission.DUMP,
                    message);
            getContext().enforceCallingPermission(android.Manifest.permission.DUMP, message);
        }
    };