Author: sebb
Date: Fri Aug 15 12:02:19 2008
New Revision: 686320

URL: http://svn.apache.org/viewvc?rev=686320&view=rev
Log:
NET-225 - FTPFileEntryParserImpl.preParse() doesn't remove unparsable entries 
at the end of the file list

Modified:
    
commons/proper/net/trunk/src/java/org/apache/commons/net/ftp/FTPFileEntryParserImpl.java
    commons/proper/net/trunk/xdocs/changes.xml

Modified: 
commons/proper/net/trunk/src/java/org/apache/commons/net/ftp/FTPFileEntryParserImpl.java
URL: 
http://svn.apache.org/viewvc/commons/proper/net/trunk/src/java/org/apache/commons/net/ftp/FTPFileEntryParserImpl.java?rev=686320&r1=686319&r2=686320&view=diff
==============================================================================
--- 
commons/proper/net/trunk/src/java/org/apache/commons/net/ftp/FTPFileEntryParserImpl.java
 (original)
+++ 
commons/proper/net/trunk/src/java/org/apache/commons/net/ftp/FTPFileEntryParserImpl.java
 Fri Aug 15 12:02:19 2008
@@ -113,8 +113,6 @@
             String entry = (String) it.next();
             if (null == parseFTPEntry(entry)) {
                 it.remove();
-            } else {
-                break;
             }
          }
          return original;

Modified: commons/proper/net/trunk/xdocs/changes.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/net/trunk/xdocs/changes.xml?rev=686320&r1=686319&r2=686320&view=diff
==============================================================================
--- commons/proper/net/trunk/xdocs/changes.xml (original)
+++ commons/proper/net/trunk/xdocs/changes.xml Fri Aug 15 12:02:19 2008
@@ -102,6 +102,9 @@
                 ParserInitializationException when connecting to a Unix FTP 
server: comparison string must be upper case
                 Added check for AS/400 response.
             </action>
+            <action dev="sebb" type="fix" issue="NET-225">
+                FTPFileEntryParserImpl.preParse() doesn't remove unparsable 
entries at the end of the file list
+            </action>
                </release> 
                
                <release version="1.4.1" date="December 3, 2005" 
description="fix release to restore jdk 1.3 compatability">


Reply via email to