ApkVerifier.requestedPermissionsEqual: Flip debug log print order

* To match arguments

Change-Id: I7c4a05f764eda1279c9fa4c3331dc99b902dd71f
This commit is contained in:
Chirayu Desai
2022-01-14 02:56:35 +05:30
parent 15cfe1568d
commit f99797e0ae

View File

@@ -107,8 +107,8 @@ class ApkVerifier {
*/
public static boolean requestedPermissionsEqual(@Nullable String[] expected, @Nullable String[] actual) {
Utils.debugLog(TAG, "Checking permissions");
Utils.debugLog(TAG, "Actual:\n " + (actual == null ? "None" : TextUtils.join("\n ", actual)));
Utils.debugLog(TAG, "Expected:\n " + (expected == null ? "None" : TextUtils.join("\n ", expected)));
Utils.debugLog(TAG, "Actual:\n " + (actual == null ? "None" : TextUtils.join("\n ", actual)));
if (expected == null && actual == null) {
return true;