Skip to content

Commit 1062307

Browse files
committed
Removed some redundant this keyword
1 parent dd17388 commit 1062307

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/src/processing/app/EditorTab.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -103,11 +103,11 @@ public EditorTab(Editor editor, SketchFile file, String contents)
103103
this.editor = editor;
104104
this.file = file;
105105
RSyntaxDocument document = createDocument(contents);
106-
this.textarea = createTextArea(document);
107-
this.scrollPane = createScrollPane(this.textarea);
106+
textarea = createTextArea(document);
107+
scrollPane = createScrollPane(textarea);
108108
file.setStorage(this);
109109
applyPreferences();
110-
add(this.scrollPane, BorderLayout.CENTER);
110+
add(scrollPane, BorderLayout.CENTER);
111111

112112
RUndoManager undo = new LastUndoableEditAwareUndoManager(this.textarea, this.editor);
113113
document.addUndoableEditListener(undo);

0 commit comments

Comments
 (0)