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

Commit 5b1662d4 authored by Selim Cinek's avatar Selim Cinek
Browse files

Removed unused nullcheck

Change-Id: Iebc3e267d2a80d960e4ee4ebd04b3a96a1b90067
parent bd7c5908
Loading
Loading
Loading
Loading
+20 −21
Original line number Diff line number Diff line
@@ -166,8 +166,7 @@ public abstract class KeyguardPinBasedInputView extends KeyguardAbsKeyInputView
            mOkButton.setOnHoverListener(new LiftToActivateListener(getContext()));
        }

        mDeleteButton = findViewById(R.id.delete_button);
        if (mDeleteButton != null) {
        mDeleteButton = findViewById(R.id.delete_button);{
        mDeleteButton.setVisibility(View.VISIBLE);
        mDeleteButton.setOnClickListener(new OnClickListener() {
            public void onClick(View v) {
@@ -188,7 +187,7 @@ public abstract class KeyguardPinBasedInputView extends KeyguardAbsKeyInputView
                return true;
            }
        });
        }

        mButton0 = findViewById(R.id.key0);
        mButton1 = findViewById(R.id.key1);
        mButton2 = findViewById(R.id.key2);