Skip to content

Commit 36ed301

Browse files
shorter representation of a test run
to minimize the width of the combobox
1 parent f62c43f commit 36ed301

File tree

1 file changed

+3
-1
lines changed
  • sqldev/src/main/java/org/utplsql/sqldev/model/runner

1 file changed

+3
-1
lines changed

sqldev/src/main/java/org/utplsql/sqldev/model/runner/Run.xtend

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,9 @@ class Run extends AbstractModel {
4545
}
4646

4747
def getName() {
48-
return '''«startTime» («connectionName»)'''
48+
val time = startTime.substring(11,19)
49+
val conn = connectionName?.substring(15)
50+
return '''«time» («conn»)'''
4951
}
5052

5153
def void put(List<Item> items) {

0 commit comments

Comments
 (0)