Author: sebb
Date: Fri Mar 11 19:09:11 2011
New Revision: 1080728
URL: http://svn.apache.org/viewvc?rev=1080728&view=rev
Log:
Docs
Modified:
commons/proper/net/trunk/src/main/java/org/apache/commons/net/ftp/parser/UnixFTPEntryParser.java
Modified:
commons/proper/net/trunk/src/main/java/org/apache/commons/net/ftp/parser/UnixFTPEntryParser.java
URL:
http://svn.apache.org/viewvc/commons/proper/net/trunk/src/main/java/org/apache/commons/net/ftp/parser/UnixFTPEntryParser.java?rev=1080728&r1=1080727&r2=1080728&view=diff
==============================================================================
---
commons/proper/net/trunk/src/main/java/org/apache/commons/net/ftp/parser/UnixFTPEntryParser.java
(original)
+++
commons/proper/net/trunk/src/main/java/org/apache/commons/net/ftp/parser/UnixFTPEntryParser.java
Fri Mar 11 19:09:11 2011
@@ -174,14 +174,16 @@ public class UnixFTPEntryParser extends
// intentionally do nothing
}
+ // A 'whiteout' file is an ARTIFICIAL entry in any of several
types of
+ // 'translucent' filesystems, of which a 'union' filesystem is one.
- // bcdlfmpSs-
+ // bcdelfmpSs-
switch (typeStr.charAt(0))
{
case 'd':
type = FTPFile.DIRECTORY_TYPE;
break;
- case 'e':
+ case 'e': // NET-39 => z/OS external link
type = FTPFile.SYMBOLIC_LINK_TYPE;
break;
case 'l':
@@ -196,7 +198,7 @@ public class UnixFTPEntryParser extends
case '-':
type = FTPFile.FILE_TYPE;
break;
- default:
+ default: // e.g. ? and w = whiteout
type = FTPFile.UNKNOWN_TYPE;
}