- From: Yves Lafon via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 07 Apr 2008 14:32:43 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2002/css-validator/org/w3c/css/properties/svg
In directory hutz:/tmp/cvs-serv22463
Modified Files:
SVGBasicStyle.java
Log Message:
wrong class type before cast
Index: SVGBasicStyle.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/properties/svg/SVGBasicStyle.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- SVGBasicStyle.java 7 Apr 2008 14:16:24 -0000 1.2
+++ SVGBasicStyle.java 7 Apr 2008 14:32:41 -0000 1.3
@@ -160,7 +160,7 @@
if (mask == null) {
mask =
(Mask) style.CascadingOrder (
- new ImageRendering(), style, selector);
+ new Mask(), style, selector);
}
return mask;
}
Received on Monday, 7 April 2008 14:33:16 UTC