2002/css-validator/org/w3c/css/values CssIdent.java,1.8,1.9

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

Modified Files:
	CssIdent.java 
Log Message:
stoopid typo


Index: CssIdent.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/values/CssIdent.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- CssIdent.java	17 Dec 2009 16:09:44 -0000	1.8
+++ CssIdent.java	17 Dec 2009 21:57:30 -0000	1.9
@@ -19,7 +19,7 @@
     static {
 	allowedvalues = new HashMap<String,CssIdent>();
 	allowedvalues.put("inherit", new CssIdent("inherit"));
-	allowedvalues.put("none", new CssIdent("inherit"));
+	allowedvalues.put("none", new CssIdent("none"));
     }
     /**
      * Get a cached CssIdent, useful for common values like "inherit"

Received on Thursday, 17 December 2009 21:57:34 UTC