- From: Bjoern Hoehrmann <bjoern@dev.w3.org>
- Date: Sun, 30 May 2004 05:06:54 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2002/css-validator/org/w3c/css/svgproperties
In directory hutz:/tmp/cvs-serv20837/org/w3c/css/svgproperties
Modified Files:
ColorProfileSrc.java
Log Message:
more consistent use of java.util.Vector methods, see http://www.w3.org/mid/3f35c265.166229986@smtp.bjoern.hoehrmann.de
Index: ColorProfileSrc.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/svgproperties/ColorProfileSrc.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- ColorProfileSrc.java 26 Jul 2002 14:09:31 -0000 1.2
+++ ColorProfileSrc.java 30 May 2004 05:06:52 -0000 1.3
@@ -78,8 +78,8 @@
}
if (val instanceof CssURL) {
- cpSrcs.add(cpSrc);
- cpSrcs.add(val);
+ cpSrcs.addElement(cpSrc);
+ cpSrcs.addElement(val);
cpSrc = null;
expression.next();
}
Received on Sunday, 30 May 2004 01:06:59 UTC