2002/css-validator/html/util EmptyEnumeration.java,1.2,1.3 URLHistory.java,1.2,1.3

Update of /sources/public/2002/css-validator/html/util
In directory hutz:/tmp/cvs-serv9389/html/util

Modified Files:
	EmptyEnumeration.java URLHistory.java 
Log Message:
>From Jean-Guilhem Rouel (again!)
Reformatting of code
Fix for bug 774 [1] (even more warnings)
Fix for bug 768 [2]
Modification of the soap output format (each warning list and error list has 
the URI it refers to)


[1] http://www.w3.org/Bugs/Public/show_bug.cgi?id=774
[2] http://www.w3.org/Bugs/Public/show_bug.cgi?id=768



Index: URLHistory.java
===================================================================
RCS file: /sources/public/2002/css-validator/html/util/URLHistory.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- URLHistory.java	8 Apr 2002 21:22:41 -0000	1.2
+++ URLHistory.java	14 Sep 2005 15:14:17 -0000	1.3
@@ -10,7 +10,7 @@
 public class URLHistory {
     private Vector urls = new Vector(1, 1);
     private int index = -1;
-    
+
     public void append(URL url) {
 	urls.addElement(url);
 	index = urls.size()-1;

Index: EmptyEnumeration.java
===================================================================
RCS file: /sources/public/2002/css-validator/html/util/EmptyEnumeration.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- EmptyEnumeration.java	8 Apr 2002 21:22:41 -0000	1.2
+++ EmptyEnumeration.java	14 Sep 2005 15:14:17 -0000	1.3
@@ -10,7 +10,7 @@
     public boolean hasMoreElements() {
 	return false;
     }
-    
+
     public Object nextElement() {
 	return null;
     }

Received on Wednesday, 14 September 2005 15:16:01 UTC