19
19
import java .util .LinkedHashMap ;
20
20
import java .util .LinkedHashSet ;
21
21
import java .util .List ;
22
+ import java .util .Map ;
23
+ import java .util .Set ;
22
24
23
25
import org .springframework .core .style .ToStringCreator ;
24
26
import org .utplsql .sqldev .model .JsonToStringStyler ;
@@ -38,9 +40,9 @@ public class Run {
38
40
private Integer infoCount ;
39
41
private String errorStack ;
40
42
private String serverOutput ;
41
- private final LinkedHashSet <Item > items ;
42
- private LinkedHashMap <String , Test > tests ;
43
- private LinkedHashMap <String , ItemNode > itemNodes ;
43
+ private final Set <Item > items ;
44
+ private Map <String , Test > tests ;
45
+ private Map <String , ItemNode > itemNodes ;
44
46
private String status ;
45
47
private Long start ;
46
48
// to abort connections, producerConn is handled by UtplsqlRunner
@@ -260,15 +262,15 @@ public void setServerOutput(final String serverOutput) {
260
262
}
261
263
262
264
public LinkedHashMap <String , Test > getTests () {
263
- return tests ;
265
+ return ( LinkedHashMap < String , Test >) tests ;
264
266
}
265
267
266
268
public void setTests (final LinkedHashMap <String , Test > tests ) {
267
269
this .tests = tests ;
268
270
}
269
271
270
272
public LinkedHashMap <String , ItemNode > getItemNodes () {
271
- return itemNodes ;
273
+ return ( LinkedHashMap < String , ItemNode >) itemNodes ;
272
274
}
273
275
274
276
public void setItemNodes (LinkedHashMap <String , ItemNode > itemNodes ) {
0 commit comments