- From: Yves Lafon via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 28 Aug 2012 19:49:49 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2002/css-validator/org/w3c/css/properties/css2 In directory hutz:/tmp/cvs-serv17060/css2 Modified Files: CssFontStretch.java Log Message: minor change Index: CssFontStretch.java =================================================================== RCS file: /sources/public/2002/css-validator/org/w3c/css/properties/css2/CssFontStretch.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- CssFontStretch.java 23 Aug 2012 14:53:39 -0000 1.2 +++ CssFontStretch.java 28 Aug 2012 19:49:47 -0000 1.3 @@ -19,12 +19,12 @@ */ public class CssFontStretch extends org.w3c.css.properties.css.CssFontStretch { - static final String[] _allowed_values = {"normal", "wider", "narrower", - "ultra-condensed", "extra-condensed", "condensed", "semi-condensed", - "semi-expanded", "expanded", "extra-expanded", "ultra-expanded"}; static final CssIdent[] allowed_values; static { + String[] _allowed_values = {"normal", "wider", "narrower", + "ultra-condensed", "extra-condensed", "condensed", "semi-condensed", + "semi-expanded", "expanded", "extra-expanded", "ultra-expanded"}; allowed_values = new CssIdent[_allowed_values.length]; for (int i = 0; i < allowed_values.length; i++) { allowed_values[i] = CssIdent.getIdent(_allowed_values[i]);
Received on Tuesday, 28 August 2012 19:49:50 UTC