Author: sebb
Date: Sun Jul 11 22:08:56 2010
New Revision: 963153

URL: http://svn.apache.org/viewvc?rev=963153&view=rev
Log:
NET-330 The method VMSFTPEntryParser.parseFileList(InputStream listStream) 
should not be present.
Mark method as deprecated and to be removed

Modified:
    
commons/proper/net/branches/NET_2_0/src/main/java/org/apache/commons/net/ftp/parser/VMSFTPEntryParser.java

Modified: 
commons/proper/net/branches/NET_2_0/src/main/java/org/apache/commons/net/ftp/parser/VMSFTPEntryParser.java
URL: 
http://svn.apache.org/viewvc/commons/proper/net/branches/NET_2_0/src/main/java/org/apache/commons/net/ftp/parser/VMSFTPEntryParser.java?rev=963153&r1=963152&r2=963153&view=diff
==============================================================================
--- 
commons/proper/net/branches/NET_2_0/src/main/java/org/apache/commons/net/ftp/parser/VMSFTPEntryParser.java
 (original)
+++ 
commons/proper/net/branches/NET_2_0/src/main/java/org/apache/commons/net/ftp/parser/VMSFTPEntryParser.java
 Sun Jul 11 22:08:56 2010
@@ -113,7 +113,10 @@ public class VMSFTPEntryParser extends C
      *     if the list could not be obtained or if there are no files in
      *     the directory.
      * @exception IOException  If an I/O error occurs reading the listStream.
+     * @deprecated No other FTPFileEntryParser implementations have this 
method.
+     * Not currently used by NET code. To be removed in 3.0
      ***/
+    @Deprecated
     public FTPFile[] parseFileList(InputStream listStream) throws IOException {
         FTPListParseEngine engine = new FTPListParseEngine(this);
         engine.readServerList(listStream, null);


Reply via email to