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

Commit 592002ca authored by Aurimas Liutikas's avatar Aurimas Liutikas Committed by Android (Google) Code Review
Browse files

Merge "Avoid double-calling super.getText() in EditText.getText()"

parents 1538a4d8 8813394b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -110,7 +110,7 @@ public class EditText extends TextView {
            return null;
        }
        if (text instanceof Editable) {
            return (Editable) super.getText();
            return (Editable) text;
        }
        super.setText(text, BufferType.EDITABLE);
        return (Editable) super.getText();