Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 0 additions & 11 deletions sqldev/src/main/java/org/utplsql/sqldev/ui/runner/RunnerPanel.java
Original file line number Diff line number Diff line change
Expand Up @@ -479,22 +479,11 @@ private void setCurrentRun(final Run run) {
}
}

private void showDockable() {
try {
if (!RunnerFactory.getDockable().isVisible()) {
RunnerFactory.showDockable();
}
} catch (Throwable t) {
// ignore
}
}

private void enableOrDisableStopButton() {
stopButton.setEnabled(currentRun.getEndTime() == null);
}

public synchronized void update(final String reporterId) {
showDockable();
enableOrDisableStopButton();
setCurrentRun(runs.get(reporterId));
final int row = currentRun.getCurrentTestNumber() - 1;
Expand Down