Skip to content

Commit 21b572f

Browse files
committed
ConsolePane: name the show() method more sensibly
1 parent b5e266a commit 21b572f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/org/scijava/ui/console/AbstractConsolePane.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public AbstractConsolePane(final Context context) {
5757
@Override
5858
public void outputOccurred(final OutputEvent event) {
5959
append(event);
60-
if (event.getSource() == Source.STDERR) popUp();
60+
if (event.getSource() == Source.STDERR) show();
6161
}
6262

6363
}

src/main/java/org/scijava/ui/console/ConsolePane.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,6 @@ public interface ConsolePane<C> extends UIComponent<C>, OutputListener {
4545
void append(OutputEvent event);
4646

4747
/** Makes the console visible. */
48-
void popUp();
48+
void show();
4949

5050
}

0 commit comments

Comments
 (0)