- From: Yves Lafon via cvs-syncmail <cvsmail@w3.org>
- Date: Fri, 06 Mar 2009 11:15:14 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2002/css-validator/org/w3c/css/properties/css1 In directory hutz:/tmp/cvs-serv12939/org/w3c/css/properties/css1 Modified Files: CssProperty.java Log Message: corrected function name Index: CssProperty.java =================================================================== RCS file: /sources/public/2002/css-validator/org/w3c/css/properties/css1/CssProperty.java,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- CssProperty.java 25 Feb 2009 20:44:49 -0000 1.5 +++ CssProperty.java 6 Mar 2009 11:15:12 -0000 1.6 @@ -106,7 +106,7 @@ /** * Returns true if the property is inherited. */ - public boolean Inherited() { + public boolean inherited() { return CssProperties.getInheritance(this); } @@ -150,7 +150,7 @@ * @see #getPropertyName() */ public void print(CssPrinterStyle printer) { - if (byUser || Inherited() || important) { + if (byUser || inherited() || important) { // if (Inherited() || important) { printer.print(this); }
Received on Friday, 6 March 2009 11:15:27 UTC