- From: Julien Grand-Mourcel via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 13 Aug 2007 08:30:39 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2002/css-validator/org/w3c/css/util
In directory hutz:/tmp/cvs-serv7383/org/w3c/css/util
Modified Files:
ApplContext.java
Log Message:
Using translation to display the css version
Index: ApplContext.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/util/ApplContext.java,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- ApplContext.java 7 Aug 2007 10:53:39 -0000 1.12
+++ ApplContext.java 13 Aug 2007 08:30:37 -0000 1.13
@@ -126,19 +126,6 @@
}
return cssversion;
}
-
- public String getFormatedCssVersion() {
- if (!this.cssversion.toLowerCase().startsWith("css"))
- return this.cssversion;
- char number[] = this.cssversion.substring(3).toCharArray();
- String css = "CSS ";
- for (int i = 0; i < number.length; ++i) {
- css += number[i];
- if (i != number.length - 1)
- css += ".";
- }
- return css;
- }
public void setProfile(String profile) {
this.profile = profile;
Received on Monday, 13 August 2007 08:30:44 UTC