- From: Yves Lafon via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 23 Aug 2012 20:25:51 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2002/css-validator/org/w3c/css/properties/css
In directory hutz:/tmp/cvs-serv12421/css
Modified Files:
CssBackgroundPosition.java
Log Message:
ident case sensitivity
Index: CssBackgroundPosition.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/properties/css/CssBackgroundPosition.java,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- CssBackgroundPosition.java 16 Feb 2012 13:27:58 -0000 1.10
+++ CssBackgroundPosition.java 23 Aug 2012 20:25:49 -0000 1.11
@@ -38,7 +38,7 @@
defaultPercent100 = new CssPercentage(100);
}
- Object value;
+ public CssValue value;
/**
* Create a new CssBackgroundPosition
@@ -71,10 +71,6 @@
return value;
}
- public void set(Object val) {
- value = val;
- }
-
/**
* Returns the name of this property
*/
Received on Thursday, 23 August 2012 20:25:52 UTC