juergen     2002/07/30 03:01:55

  Modified:    
testsuite/testsuite/junit/src/org/apache/slide/testsuite/testtools/tprocessor
                        XMLResponseBodyAssert.java
  Log:
  jdom adaptions: clone the list before sorting.
  
  Revision  Changes    Path
  1.10      +4 -4      
jakarta-slide/testsuite/testsuite/junit/src/org/apache/slide/testsuite/testtools/tprocessor/XMLResponseBodyAssert.java
  
  Index: XMLResponseBodyAssert.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/testsuite/testsuite/junit/src/org/apache/slide/testsuite/testtools/tprocessor/XMLResponseBodyAssert.java,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- XMLResponseBodyAssert.java        19 Jun 2002 07:08:56 -0000      1.9
  +++ XMLResponseBodyAssert.java        30 Jul 2002 10:01:55 -0000      1.10
  @@ -364,7 +364,7 @@
       
       
       private List sort(List l, String pathName) {
  -        Collections.sort(l, new ElementComparator(pathName));
  +        Collections.sort(new ArrayList(l), new ElementComparator(pathName));
           return l;
       }
       
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to