From 585ffd1cb3497eda590e4da48a8bec5726af1d3a Mon Sep 17 00:00:00 2001 From: Yifan Hong Date: Fri, 14 Apr 2017 15:39:20 -0700 Subject: [PATCH] Update for removing mount arg to VintfObject::CheckCompatibility It is default to false. Test: pass Bug: 36814503 Change-Id: Ib06850d3355f54996b17cc6c2980a7d17af132e5 --- core/jni/android_os_VintfObject.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/jni/android_os_VintfObject.cpp b/core/jni/android_os_VintfObject.cpp index 1883ecb9684aa..9491a1ecdad36 100644 --- a/core/jni/android_os_VintfObject.cpp +++ b/core/jni/android_os_VintfObject.cpp @@ -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; }