You are viewing a plain text version of this content. The canonical link for it is here.
Posted to bcel-dev@jakarta.apache.org by md...@apache.org on 2003/09/08 10:46:36 UTC

cvs commit: jakarta-bcel/xdocs manual.xml

mdahm       2003/09/08 01:46:36

  Modified:    xdocs    manual.xml
  Log:
  code fixed
  
  Revision  Changes    Path
  1.11      +2 -2      jakarta-bcel/xdocs/manual.xml
  
  Index: manual.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-bcel/xdocs/manual.xml,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- manual.xml	23 May 2003 07:55:36 -0000	1.10
  +++ manual.xml	8 Sep 2003 08:46:36 -0000	1.11
  @@ -1599,8 +1599,8 @@
       InstructionHandle next  = null;
       int               count = 0;
   
  -    for(Iterator i = f.search(pat); i.hasNext(); ) {
  -      InstructionHandle[] match = (InstructionHandle[])e.next();
  +    for(Iterator iter = f.search(pat); iter.hasNext(); ) {
  +      InstructionHandle[] match = (InstructionHandle[])iter.next();
         InstructionHandle   first = match[0];
         InstructionHandle   last  = match[match.length - 1];