- From: Yves Lafon via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 18 Sep 2007 18:06:38 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2002/css-validator/org/w3c/css/css
In directory hutz:/tmp/cvs-serv13308
Modified Files:
XMLStyleSheetHandler.java
Log Message:
type of stream fixed (porting too fast from TagSoupStyleSheetHandler)
Index: XMLStyleSheetHandler.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/css/XMLStyleSheetHandler.java,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -d -r1.27 -r1.28
--- XMLStyleSheetHandler.java 18 Sep 2007 17:59:00 -0000 1.27
+++ XMLStyleSheetHandler.java 18 Sep 2007 18:06:36 -0000 1.28
@@ -483,7 +483,7 @@
void parse(URL url) throws Exception {
InputSource source = new InputSource();
URLConnection connection;
- InputStream in;
+ UnicodeInputStream in;
org.xml.sax.XMLReader xmlParser = new org.apache.xerces.parsers.SAXParser();
try {
xmlParser.setProperty(
Received on Tuesday, 18 September 2007 18:06:49 UTC