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

Commit 2b2f6d6c authored by Adam Powell's avatar Adam Powell
Browse files

Remove unnecessary parameter

Change-Id: I32810a31140263a996d4f600fa53db5f29e60f42
parent 7db82acd
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>();
        }