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

Commit 90d33ccd authored by Adam Powell's avatar Adam Powell Committed by Android (Google) Code Review
Browse files

Merge "Remove unnecessary parameter"

parents 7fa3b435 2b2f6d6c
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -12263,7 +12263,7 @@ public class View implements Drawable.Callback, Drawable.Callback2, KeyEvent.Cal
                    + "resource id.");
        }
        setKeyedTag(this, key, tag);
        setKeyedTag(key, tag);
    }
    /**
@@ -12278,10 +12278,10 @@ public class View implements Drawable.Callback, Drawable.Callback2, KeyEvent.Cal
                    + "resource id.");
        }
        setKeyedTag(this, key, tag);
        setKeyedTag(key, tag);
    }
    private void setKeyedTag(View view, int key, Object tag) {
    private void setKeyedTag(int key, Object tag) {
        if (mKeyedTags == null) {
            mKeyedTags = new SparseArray<Object>();
        }