vgritsenko 01/07/04 18:05:04
Modified: src/org/apache/cocoon/util IOUtils.java
Log:
typo
Revision Changes Path
1.5 +3 -3 xml-cocoon2/src/org/apache/cocoon/util/IOUtils.java
Index: IOUtils.java
===================================================================
RCS file: /home/cvs/xml-cocoon2/src/org/apache/cocoon/util/IOUtils.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- IOUtils.java 2001/06/15 11:49:25 1.4
+++ IOUtils.java 2001/07/05 01:05:04 1.5
@@ -28,7 +28,7 @@
*
* @author <a href="mailto:[EMAIL PROTECTED]">Ricardo Rocha</a>
* @author <a href="mailto:[EMAIL PROTECTED]">Stefano Mazzocchi</a>
- * @version CVS $Revision: 1.4 $ $Date: 2001/06/15 11:49:25 $
+ * @version CVS $Revision: 1.5 $ $Date: 2001/07/05 01:05:04 $
*/
public class IOUtils {
@@ -265,14 +265,14 @@
directoryPath += File.separator;
}
- // If the context dir contains both kinds of spearator
+ // If the context dir contains both kinds of separator
// then standardize on using the File.separator
if ((directoryPath.indexOf('/') !=-1) && (directoryPath.indexOf('\\')
!=-1)) {
directoryPath = directoryPath.replace('\\', File.separator.charAt(0));
directoryPath = directoryPath.replace('/', File.separator.charAt(0));
}
- // If the file path contains both kinds of spearator
+ // If the file path contains both kinds of separator
// then standardize on using the File.separator
if ((filePath.indexOf('/') !=-1) && (filePath.indexOf('\\') !=-1)) {
filePath = filePath.replace('\\', File.separator.charAt(0));
----------------------------------------------------------------------
In case of troubles, e-mail: [EMAIL PROTECTED]
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]