vgritsenko 01/07/04 18:06:16
Modified: src/org/apache/cocoon/util Tag: cocoon_20_branch
IOUtils.java
Log:
typo
Revision Changes Path
No revision
No revision
1.2.2.2 +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.2.2.1
retrieving revision 1.2.2.2
diff -u -r1.2.2.1 -r1.2.2.2
--- IOUtils.java 2001/06/06 17:13:29 1.2.2.1
+++ IOUtils.java 2001/07/05 01:06:16 1.2.2.2
@@ -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.2.2.1 $ $Date: 2001/06/06 17:13:29 $
+ * @version CVS $Revision: 1.2.2.2 $ $Date: 2001/07/05 01:06:16 $
*/
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]