2002/css-validator/org/w3c/css/properties/svg SVGBasicStyle.java,1.2,1.3

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