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

Commit f360ae50 authored by George Mount's avatar George Mount
Browse files

Remove password change from updateTextfield.

 Password field change is no longer needed as it was used
 previously in WebTextView and is not needed without it.

Change-Id: I7d5dc39825ee9eae77733d2a9560669cfe70ecf2
parent 99babf48
Loading
Loading
Loading
Loading
+3 −6
Original line number Diff line number Diff line
@@ -2779,14 +2779,11 @@ public final class WebViewCore {
    }

    // called by JNI
    private void updateTextfield(int ptr, boolean changeToPassword,
            String text, int textGeneration) {
    private void updateTextfield(int ptr, String text, int textGeneration) {
        if (mWebViewClassic != null) {
            Message msg = Message.obtain(mWebViewClassic.mPrivateHandler,
            Message.obtain(mWebViewClassic.mPrivateHandler,
                    WebViewClassic.UPDATE_TEXTFIELD_TEXT_MSG_ID, ptr,
                    textGeneration, text);
            msg.getData().putBoolean("password", changeToPassword);
            msg.sendToTarget();
                    textGeneration, text).sendToTarget();
        }
    }