- From: Karl Dubost via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 13 Dec 2006 06:03:49 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2002/css-validator/org/w3c/css/css
In directory hutz:/tmp/cvs-serv16765
Modified Files:
StyleSheetGeneratorHTML2.java
Log Message:
fixing a missing comma in Java code
Index: StyleSheetGeneratorHTML2.java
===================================================================
RCS file: /sources/public/2002/css-validator/org/w3c/css/css/StyleSheetGeneratorHTML2.java,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -d -r1.23 -r1.24
--- StyleSheetGeneratorHTML2.java 13 Dec 2006 05:52:05 -0000 1.23
+++ StyleSheetGeneratorHTML2.java 13 Dec 2006 06:03:47 -0000 1.24
@@ -368,7 +368,7 @@
}
ret.append(Util.escapeHTML(oldMessage));
if (warn.getContext() != null) {
- ret.append(" : ")
+ ret.append(" : ");
ret.append("<span class='codeContext'>");
ret.append(warn.getContext());
ret.append("</span>");
Received on Wednesday, 13 December 2006 06:03:56 UTC