owenb 2002/10/18 04:32:20
Modified: java/test/util FileCharacterTest.java
Log:
Minor javadoc/comment changes
Revision Changes Path
1.3 +3 -3 xml-axis-wsif/java/test/util/FileCharacterTest.java
Index: FileCharacterTest.java
===================================================================
RCS file: /home/cvs/xml-axis-wsif/java/test/util/FileCharacterTest.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- FileCharacterTest.java 18 Oct 2002 11:19:20 -0000 1.2
+++ FileCharacterTest.java 18 Oct 2002 11:32:20 -0000 1.3
@@ -81,7 +81,7 @@
* It is recommended that fix=on if only set if you are sure that the ^M characters
are present
* in the server copy of the file.
*
- * author Owen Burroughs
+ * @author Owen Burroughs <[EMAIL PROTECTED]>
*/
public class FileCharacterTest extends TestCase {
@@ -200,7 +200,7 @@
return false;
}
- //ignore files in bin directory!!!!
+ //ignore files in a bin directory. We are only interested in source
if (newFile.getPath().indexOf("\\bin\\") != -1) {
return false;
}
@@ -230,7 +230,7 @@
return false;
}
- //ignore WSAD files!!!!
+ //ignore eclipse files!!!!
if (name.toUpperCase().startsWith(".VCM")
|| name.toUpperCase().startsWith(".CLASSPATH")) {
return false;