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

Commit 875a4ba3 authored by Yifan Hong's avatar Yifan Hong
Browse files

Update for removing mount arg to VintfObject::CheckCompatibility

It is default to false.

Test: pass
Bug: 36814503

Change-Id: Ib06850d3355f54996b17cc6c2980a7d17af132e5
parent 4e01db8c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -59,7 +59,7 @@ static jint android_os_VintfObject_verify(JNIEnv *env, jclass clazz, jobjectArra
        cPackageInfo[i] = cString;
        env->ReleaseStringUTFChars(element, cString);
    }
    int32_t status = VintfObject::CheckCompatibility(cPackageInfo, false /* mount */);
    int32_t status = VintfObject::CheckCompatibility(cPackageInfo);
    return status;
}