File tree 2 files changed +4
-5
lines changed
Source/Core/src/ca/uqac/lif/xml
2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 21
21
import java .text .ParseException ;
22
22
import java .util .ArrayList ;
23
23
import java .util .Collection ;
24
- import java .util .HashSet ;
25
24
import java .util .List ;
26
25
27
26
/**
@@ -361,7 +360,7 @@ public String toString()
361
360
*/
362
361
protected static Collection <XmlElement > getNewCollection ()
363
362
{
364
- return new HashSet <XmlElement >();
363
+ return new ArrayList <XmlElement >();
365
364
}
366
365
367
366
/**
@@ -372,7 +371,7 @@ protected static Collection<XmlElement> getNewCollection()
372
371
*/
373
372
protected static Collection <String > getNewStringCollection ()
374
373
{
375
- return new HashSet <String >();
374
+ return new ArrayList <String >();
376
375
}
377
376
378
377
/**
@@ -383,7 +382,7 @@ protected static Collection<String> getNewStringCollection()
383
382
*/
384
383
protected static Collection <Number > getNewNumberCollection ()
385
384
{
386
- return new HashSet <Number >();
385
+ return new ArrayList <Number >();
387
386
}
388
387
389
388
/**
Original file line number Diff line number Diff line change 26
26
<name >xml-lif</name >
27
27
28
28
<!-- The project's version -->
29
- <version >1.2.1 </version >
29
+ <version >1.2.2 </version >
30
30
31
31
<!-- JAR filename -->
32
32
<jar >
You can’t perform that action at this time.
0 commit comments