Skip to content

Commit

Permalink
Fixed naming
Browse files Browse the repository at this point in the history
  • Loading branch information
harshad1 committed Jul 7, 2023
1 parent ef215ba commit 1d2413c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ public boolean loadDocument() {
if (_editTextUndoRedoHelper == null) {
_editTextUndoRedoHelper = new TextViewUndoRedo(_hlEditor);
} else {
_editTextUndoRedoHelper.setmTextView(_hlEditor);
_editTextUndoRedoHelper.setTextView(_hlEditor);
}

_hlEditor.setSelection(sel[0], sel[1]);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public class TextViewUndoRedo {
/**
* The edit text.
*/
private final TextView mTextView;
private TextView mTextView;

// =================================================================== //

Expand All @@ -91,9 +91,9 @@ public TextViewUndoRedo(TextView textView) {
mTextView.addTextChangedListener(mChangeListener);
}

public void setmTextView(TextView mTextView) {
public void setTextView(TextView textView) {
disconnect();
mTextView = mTextView;
mTextView = textView;
mTextView.addTextChangedListener(mChangeListener);
}

Expand Down

0 comments on commit 1d2413c

Please sign in to comment.