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

Commit 7418ef9c authored by Eran Messeri's avatar Eran Messeri
Browse files

Fix logging string

Remove spurious 'if' in the device ID access log message.

Bug: 124732723
Test: That it builds
Change-Id: I4cee42942e3d1f4d37794ad9d722cf77c54814eb
parent 6f82297c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -8383,7 +8383,7 @@ public class DevicePolicyManagerService extends BaseIDevicePolicyManager {
            return true;
        }
        Log.w(LOG_TAG, String.format("Package if %s (uid=%d, pid=%d) cannot access Device IDs",
        Log.w(LOG_TAG, String.format("Package %s (uid=%d, pid=%d) cannot access Device IDs",
                    packageName, uid, pid));
        return false;
    }