2002/css-validator/org/w3c/css/properties/css CssBackgroundRepeat.java,1.6,1.7

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

Modified Files:
	CssBackgroundRepeat.java 
Log Message:
ident case sensitivity

Index: CssBackgroundRepeat.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/properties/css/CssBackgroundRepeat.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- CssBackgroundRepeat.java	5 Oct 2011 11:46:42 -0000	1.6
+++ CssBackgroundRepeat.java	23 Aug 2012 21:09:07 -0000	1.7
@@ -11,6 +11,7 @@
 import org.w3c.css.util.InvalidParamException;
 import org.w3c.css.values.CssExpression;
 import org.w3c.css.values.CssIdent;
+import org.w3c.css.values.CssValue;
 
 /**
  * @since CSS1
@@ -22,7 +23,7 @@
         repeat = CssIdent.getIdent("repeat");
     }
 
-    public Object value;
+    public CssValue value;
 
     /**
      * Create a new CssBackgroundRepeat
@@ -57,10 +58,6 @@
         return value;
     }
 
-    public void set(Object val) {
-        value = val;
-    }
-
     /**
      * Returns true if this property is "softly" inherited
      * e.g. his value equals inherit

Received on Thursday, 23 August 2012 21:09:17 UTC