- From: Yves Lafon via cvs-syncmail <cvsmail@w3.org>
- Date: Sat, 04 Aug 2012 21:17:09 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2002/css-validator/org/w3c/css/selectors In directory hutz:/tmp/cvs-serv31218/w3c/css/selectors Modified Files: IdSelector.java Log Message: font revamp, still some missing properties for CSS3 and @font-face for CSS2 and CSS3 Index: IdSelector.java =================================================================== RCS file: /sources/public/2002/css-validator/org/w3c/css/selectors/IdSelector.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- IdSelector.java 14 Sep 2005 15:15:32 -0000 1.2 +++ IdSelector.java 4 Aug 2012 21:17:07 -0000 1.3 @@ -39,7 +39,7 @@ * @see Selector#toString() */ public String toString() { - return "#" + name; + return '#' + name; } /**
Received on Saturday, 4 August 2012 21:17:11 UTC