File.java (normalizePath): Add Win32 support for auto conversion of a '/' path separator to Win32's '\'...

* java/io/File.java (normalizePath): Add Win32 support for auto
	conversion of a '/' path separator to Win32's '\' separator.

From-SVN: r52447
This commit is contained in:
Adam King 2002-04-17 23:02:33 +00:00 committed by Bryce McKinlay
parent 63501e9115
commit b7403f10f2
2 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2002-04-17 Adam King <aking@dreammechanics.com>
* java/io/File.java (normalizePath): Add Win32 support for auto
conversion of a '/' path separator to Win32's '\' separator.
2002-04-16 Tom Tromey <tromey@redhat.com>
Fix for PR libgcj/6081:

View File

@ -82,6 +82,11 @@ public class File implements Serializable, Comparable
// Remove duplicate and redundant separator characters.
private String normalizePath(String p)
{
// On Windows, convert any '/' to '\'. This appears to be the same logic
// that Sun's Win32 Java performs.
if (separatorChar == '\\')
p = p.replace ('/', '\\');
int dupIndex = p.indexOf(dupSeparator);
int plen = p.length();