2002/css-validator/org/w3c/css/properties/css CssAzimuth.java,1.1,1.2

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

Modified Files:
	CssAzimuth.java 
Log Message:
azimuth property redone for CSS2 CSS21 and CSS3, it now checks for invalid separator

Index: CssAzimuth.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/properties/css/CssAzimuth.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- CssAzimuth.java	9 Sep 2011 12:16:43 -0000	1.1
+++ CssAzimuth.java	10 Sep 2011 14:20:13 -0000	1.2
@@ -35,8 +35,6 @@
      */
     public CssAzimuth(ApplContext ac, CssExpression expression, boolean check)
             throws InvalidParamException {
-
-
         throw new InvalidParamException("value",
                 expression.getValue().toString(),
                 getPropertyName(), ac);
@@ -74,7 +72,7 @@
      * Returns a string representation of the object.
      */
     public String toString() {
-            return value.toString();
+        return value.toString();
     }
 
     /**
@@ -99,7 +97,6 @@
     }
 
 
-
     /**
      * Get this property in the style.
      *

Received on Saturday, 10 September 2011 14:20:19 UTC