Skip to content

Commit 44788e3

Browse files
authored
Refactor code style to comply with style guidelines: removed unnecessary whitespace and added two blank lines between function blocks for improved readability.
1 parent ab31897 commit 44788e3

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

app/src/processing/app/ui/Editor.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -844,7 +844,6 @@ protected JMenu buildEditMenu() {
844844
editMenuUpdatable.add(action);
845845
menu.add(item);
846846

847-
848847
// Update copy/cut state on selection/de-selection
849848
menu.addMenuListener(new MenuListener() {
850849
// UndoAction and RedoAction do this for themselves.
@@ -1889,7 +1888,6 @@ protected void handleCommentUncomment() {
18891888
}
18901889

18911890

1892-
18931891
public void handleIndent() {
18941892
handleIndentOutdent(true);
18951893
}
@@ -1943,6 +1941,8 @@ public void handleIndentOutdent(boolean indent) {
19431941
stopCompoundEdit();
19441942
sketch.setModified(true);
19451943
}
1944+
1945+
19461946
/**
19471947
* Moves the selected lines up or down in the text editor.
19481948
*
@@ -2046,6 +2046,7 @@ else if (replacedLine >= 0 && replacedLine < textarea.getLineCount()) {
20462046
}
20472047
}
20482048

2049+
20492050
static public boolean checkParen(char[] array, int index, int stop) {
20502051
while (index < stop) {
20512052
switch (array[index]) {

0 commit comments

Comments
 (0)