mirror of
https://github.com/f-droid/fdroidclient.git
synced 2026-04-20 14:57:15 -04:00
ApkVerifier.requestedPermissionsEqual: Flip debug log print order
* To match arguments Change-Id: I7c4a05f764eda1279c9fa4c3331dc99b902dd71f
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user