2002/css-validator/org/w3c/css/css StyleSheetParser.java,1.11,1.12

Update of /sources/public/2002/css-validator/org/w3c/css/css
In directory hutz:/tmp/cvs-serv11270/org/w3c/css/css

Modified Files:
	StyleSheetParser.java 
Log Message:
adapting the new Warning constructor to its new signature (with a list of messages instead of just one or two messages before)

Index: StyleSheetParser.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/css/StyleSheetParser.java,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- StyleSheetParser.java	31 Jul 2007 12:50:54 -0000	1.11
+++ StyleSheetParser.java	13 Sep 2007 09:51:20 -0000	1.12
@@ -157,8 +157,8 @@
 						   cssFouffa.getLine(),
 						   "at-rule",
 						   2,
-						   ident,
-						   string, ac));
+						   new String[] { ident, string },
+						   ac));
 	//stylesheet.addAtRule(atRule);
     }
 

Received on Thursday, 13 September 2007 09:51:26 UTC