Author: sebb
Date: Fri Aug 15 12:03:23 2008
New Revision: 686323
URL: http://svn.apache.org/viewvc?rev=686323&view=rev
Log:
NET-225 - FTPFileEntryParserImpl.preParse() doesn't remove unparsable entries
at the end of the file list
Modified:
commons/proper/net/branches/NET_2_0/src/main/java/org/apache/commons/net/ftp/FTPFileEntryParserImpl.java
commons/proper/net/branches/NET_2_0/src/site/xdoc/changes.xml
Modified:
commons/proper/net/branches/NET_2_0/src/main/java/org/apache/commons/net/ftp/FTPFileEntryParserImpl.java
URL:
http://svn.apache.org/viewvc/commons/proper/net/branches/NET_2_0/src/main/java/org/apache/commons/net/ftp/FTPFileEntryParserImpl.java?rev=686323&r1=686322&r2=686323&view=diff
==============================================================================
---
commons/proper/net/branches/NET_2_0/src/main/java/org/apache/commons/net/ftp/FTPFileEntryParserImpl.java
(original)
+++
commons/proper/net/branches/NET_2_0/src/main/java/org/apache/commons/net/ftp/FTPFileEntryParserImpl.java
Fri Aug 15 12:03:23 2008
@@ -70,8 +70,6 @@
String entry = it.next();
if (null == parseFTPEntry(entry)) {
it.remove();
- } else {
- break;
}
}
return original;
Modified: commons/proper/net/branches/NET_2_0/src/site/xdoc/changes.xml
URL:
http://svn.apache.org/viewvc/commons/proper/net/branches/NET_2_0/src/site/xdoc/changes.xml?rev=686323&r1=686322&r2=686323&view=diff
==============================================================================
--- commons/proper/net/branches/NET_2_0/src/site/xdoc/changes.xml (original)
+++ commons/proper/net/branches/NET_2_0/src/site/xdoc/changes.xml Fri Aug 15
12:03:23 2008
@@ -171,6 +171,9 @@
<action dev="sebb" type="fix" issue="NET-230">
ParserInitializationException when connecting to a Unix FTP
server: comparison string must be upper case
</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>