greenrd 01/02/19 12:06:07
Modified: . changes.xml
src/org/apache/cocoon Utils.java
Log:
fix bug 642
Revision Changes Path
1.209 +5 -2 xml-cocoon/changes.xml
Index: changes.xml
===================================================================
RCS file: /home/cvs/xml-cocoon/changes.xml,v
retrieving revision 1.208
retrieving revision 1.209
diff -u -r1.208 -r1.209
--- changes.xml 2001/02/07 19:49:23 1.208
+++ changes.xml 2001/02/19 20:06:02 1.209
@@ -4,7 +4,7 @@
<!--
History of Cocoon changes
- $Id: changes.xml,v 1.208 2001/02/07 19:49:23 greenrd Exp $
+ $Id: changes.xml,v 1.209 2001/02/19 20:06:02 greenrd Exp $
-->
<changes title="History of Changes">
@@ -18,8 +18,11 @@
</devs>
<release version="@version@" date="@date@">
+ <action dev="RDG" type="fix" fixes-bug="642" due-to="Antonia Arena"
due-to-email="[EMAIL PROTECTED]">
+ Fixed bug in Util.getAllPIs
+ </action>
<action dev="RDG" type="fix" due-to="David Cittadini" due-to-email="[EMAIL
PROTECTED]">
- Fixed SVG samples for IE5.5.
+ Fixed SVG sample for IE5.5.
</action>
<action dev="RDG" type="fix" fixes-bug="541"
due-to="Dafang Zhang" due-to-email="[EMAIL PROTECTED]">
1.26 +3 -2 xml-cocoon/src/org/apache/cocoon/Utils.java
Index: Utils.java
===================================================================
RCS file: /home/cvs/xml-cocoon/src/org/apache/cocoon/Utils.java,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- Utils.java 2001/02/06 12:29:49 1.25
+++ Utils.java 2001/02/19 20:06:05 1.26
@@ -1,4 +1,4 @@
-/*-- $Id: Utils.java,v 1.25 2001/02/06 12:29:49 greenrd Exp $ --
+/*-- $Id: Utils.java,v 1.26 2001/02/19 20:06:05 greenrd Exp $ --
============================================================================
The Apache Software License, Version 1.1
@@ -66,7 +66,7 @@
*
* @author <a href="mailto:[EMAIL PROTECTED]">Stefano Mazzocchi</a>
* @author <a href="mailto:[EMAIL PROTECTED]">Robin Green</a>
- * @version $Revision: 1.25 $ $Date: 2001/02/06 12:29:49 $
+ * @version $Revision: 1.26 $ $Date: 2001/02/19 20:06:05 $
*/
public final class Utils {
@@ -101,6 +101,7 @@
if (remove) {
node.getParentNode().removeChild(node);
i--;
+ j--;
}
}
}