Skip to content

Commit 5d5e22a

Browse files
committed
SwingConsolePane: fix indentation
1 parent 9d556e0 commit 5d5e22a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/main/java/org/scijava/ui/swing/console/SwingConsolePane.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,9 @@ public void show() {
115115

116116
@Override
117117
public void run() {
118-
if (!window.isVisible())
119-
window.setVisible(true);
118+
if (!window.isVisible()) {
119+
window.setVisible(true);
120+
}
120121
}
121122
});
122123
}

0 commit comments

Comments
 (0)