Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 51684d7

Browse files
show description if it is available, regardless of the node type
1 parent beed2c2 commit 51684d7

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

sqldev/src/main/java/org/utplsql/sqldev/ui/runner/TestOverviewTreeTableModel.java

-6
Original file line numberDiff line numberDiff line change
@@ -483,12 +483,6 @@ public Object getValueAt(Object node, int col) {
483483
switch (col) {
484484
case 0:
485485
if (showDescription && itemNode.getDescription() != null) {
486-
if (itemNode.getUserObject() instanceof Suite) {
487-
if (!itemNode.getName().contains("context_#")) {
488-
// description of suites might be bewildering, hence use it for contexts only
489-
return itemNode.getName();
490-
}
491-
}
492486
return itemNode.getDescription();
493487
} else {
494488
return itemNode.getName();

0 commit comments

Comments
 (0)