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

Commit 0f4bf9fa authored by Ioana Alexandru's avatar Ioana Alexandru
Browse files

Remove visitPersonUri flagged code

Flag: EXEMPT removing code for rolled out flag
Bug: 281044385
Test: builds

Change-Id: I05ccd19d997063873d9df0f7c4e1906bd3f0e6f5
parent 24fdc0a1
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -189,12 +189,10 @@ public final class Person implements Parcelable {
     */
    public void visitUris(@NonNull Consumer<Uri> visitor) {
        visitor.accept(getIconUri());
        if (Flags.visitPersonUri()) {
        if (mUri != null && !mUri.isEmpty()) {
            visitor.accept(Uri.parse(mUri));
        }
    }
    }

    /** Builder for the immutable {@link Person} class. */
    public static class Builder {