- From: Yves Lafon via cvs-syncmail <cvsmail@w3.org>
- Date: Sat, 04 Aug 2012 21:17:08 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2002/css-validator/org/w3c/css/properties/css2/user
In directory hutz:/tmp/cvs-serv31218/w3c/css/properties/css2/user
Modified Files:
UserProperties.java
Log Message:
font revamp, still some missing properties for CSS3 and @font-face for CSS2 and CSS3
Index: UserProperties.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/properties/css2/user/UserProperties.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- UserProperties.java 5 Jan 2010 13:49:48 -0000 1.3
+++ UserProperties.java 4 Aug 2012 21:17:06 -0000 1.4
@@ -6,11 +6,11 @@
// Please first read the full copyright statement in file COPYRIGHT.html
package org.w3c.css.properties.css2.user;
-import java.net.URL;
-
import org.w3c.css.properties.css.CssProperty;
import org.w3c.css.util.Utf8Properties;
+import java.net.URL;
+
/**
* @version $Revision$
*/
@@ -18,7 +18,7 @@
public static Utf8Properties properties;
public static String getString(CssProperty property, String prop) {
- return properties.getProperty(property.getPropertyName() + "." + prop);
+ return properties.getProperty(property.getPropertyName() + '.' + prop);
}
public static boolean getInheritance(CssProperty property) {
Received on Saturday, 4 August 2012 21:17:10 UTC