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

Commit 2645c147 authored by Alex Buynytskyy's avatar Alex Buynytskyy
Browse files

Fixing some AIDL warnings.

Can't change the enum values as they are a part of public API (and enum-zero is not a warning apparently).

Fixes: 179836890
Test: atest PackageManagerShellCommandTest PackageManagerShellCommandIncrementalTest IncrementalServiceTest PackageManagerServiceTest ChecksumsTest
Change-Id: I4d59410ec3476298cc98fdcc9584468b1debcb41
parent 6aa114f8
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -23,7 +23,7 @@ import android.content.pm.DataLoaderType;
 * @hide
 * @hide
 */
 */
parcelable DataLoaderParamsParcel {
parcelable DataLoaderParamsParcel {
    DataLoaderType type;
    DataLoaderType type = DataLoaderType.NONE;
    @utf8InCpp String packageName;
    @utf8InCpp String packageName;
    @utf8InCpp String className;
    @utf8InCpp String className;
    @utf8InCpp String arguments;
    @utf8InCpp String arguments;
+1 −1
Original line number Original line Diff line number Diff line
@@ -24,7 +24,7 @@ import android.content.pm.InstallationFileLocation;
 */
 */
parcelable InstallationFileParcel {
parcelable InstallationFileParcel {
    String name;
    String name;
    InstallationFileLocation location;
    InstallationFileLocation location = InstallationFileLocation.UNKNOWN;
    long size;
    long size;
    byte[] metadata;
    byte[] metadata;
    byte[] signature;
    byte[] signature;