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

Commit d9d809be authored by Jooyung Han's avatar Jooyung Han
Browse files

getStagedApexInfo() returns @nullable

Its return value (StagedApexInfo) is nullable, but not in .aidl file.
This doesn't affect in the Java backend, but it matters in the other
native backends including Rust.

Bug: 199146189
Test: m
Change-Id: Idab01ad1989100293e03cd7c2c605eb2d51f2e88
parent cbfb18e1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -122,5 +122,5 @@ interface IPackageManagerNative {
     * Get information of APEX which is staged ready for installation.
     * Returns null if no such APEX is found.
     */
    StagedApexInfo getStagedApexInfo(in @utf8InCpp String moduleName);
    @nullable StagedApexInfo getStagedApexInfo(in @utf8InCpp String moduleName);
}