We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 60f222d + 4f5063c commit c45ae9eCopy full SHA for c45ae9e
sqldev/src/main/java/org/utplsql/sqldev/ui/runner/RunnerPanel.java
@@ -479,22 +479,11 @@ private void setCurrentRun(final Run run) {
479
}
480
481
482
- private void showDockable() {
483
- try {
484
- if (!RunnerFactory.getDockable().isVisible()) {
485
- RunnerFactory.showDockable();
486
- }
487
- } catch (Throwable t) {
488
- // ignore
489
490
491
-
492
private void enableOrDisableStopButton() {
493
stopButton.setEnabled(currentRun.getEndTime() == null);
494
495
496
public synchronized void update(final String reporterId) {
497
- showDockable();
498
enableOrDisableStopButton();
499
setCurrentRun(runs.get(reporterId));
500
final int row = currentRun.getCurrentTestNumber() - 1;
0 commit comments