juanco      02/02/26 20:17:57

  Modified:    src/java/org/apache/maven/jrcs/diff Diff.java
  Log:
  shuffle was wrongly calling randomEdit
  
  Revision  Changes    Path
  1.6       +2 -2      
jakarta-turbine-maven/src/java/org/apache/maven/jrcs/diff/Diff.java
  
  Index: Diff.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-turbine-maven/src/java/org/apache/maven/jrcs/diff/Diff.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- Diff.java 26 Feb 2002 15:13:27 -0000      1.5
  +++ Diff.java 27 Feb 2002 04:17:57 -0000      1.6
  @@ -70,7 +70,7 @@
   /**
    * Produces the "delta" differences between two sequences
    *
  - * @version $Revision: 1.5 $ $Date: 2002/02/26 15:13:27 $
  + * @version $Revision: 1.6 $ $Date: 2002/02/27 04:17:57 $
    * @author  Juancarlo A�ez
    * @see     org.apache.maven.jrcs.diff.Delta
    */
  @@ -311,7 +311,7 @@
   
       public static Object[] shuffle(Object[] text)
       {
  -        return randomEdit(text, text.length);
  +        return shuffle(text, text.length);
       }
   
   
  
  
  

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

Reply via email to