You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2013/12/06 23:17:46 UTC

svn commit: r1548732 - in /commons/proper/net/trunk/src: changes/changes.xml main/java/org/apache/commons/net/ftp/FTPClient.java

Author: sebb
Date: Fri Dec  6 22:17:46 2013
New Revision: 1548732

URL: http://svn.apache.org/r1548732
Log:
NET-517 FTPClient#reinitialize is package protected

Modified:
    commons/proper/net/trunk/src/changes/changes.xml
    commons/proper/net/trunk/src/main/java/org/apache/commons/net/ftp/FTPClient.java

Modified: commons/proper/net/trunk/src/changes/changes.xml
URL: http://svn.apache.org/viewvc/commons/proper/net/trunk/src/changes/changes.xml?rev=1548732&r1=1548731&r2=1548732&view=diff
==============================================================================
--- commons/proper/net/trunk/src/changes/changes.xml [utf-8] (original)
+++ commons/proper/net/trunk/src/changes/changes.xml [utf-8] Fri Dec  6 22:17:46 2013
@@ -64,6 +64,9 @@ The <action> type attribute can be add,u
     <body>
         <release version="3.4" date="2013-??-??" description="
         ">
+            <action issue="NET-517" dev="sebb" type="fix" due-to="David Kocher">
+            FTPClient#reinitialize is package protected
+            </action>
             <action issue="NET-512" dev="sebb" type="add" due-to="Thomas Raddatz">
             Downloading files or members from the AS400 QSYS file system is not supported
             </action>

Modified: commons/proper/net/trunk/src/main/java/org/apache/commons/net/ftp/FTPClient.java
URL: http://svn.apache.org/viewvc/commons/proper/net/trunk/src/main/java/org/apache/commons/net/ftp/FTPClient.java?rev=1548732&r1=1548731&r2=1548732&view=diff
==============================================================================
--- commons/proper/net/trunk/src/main/java/org/apache/commons/net/ftp/FTPClient.java (original)
+++ commons/proper/net/trunk/src/main/java/org/apache/commons/net/ftp/FTPClient.java Fri Dec  6 22:17:46 2013
@@ -1178,7 +1178,7 @@ implements Configurable
      * @exception IOException  If an I/O error occurs while either sending a
      *      command to the server or receiving a reply from the server.
      */
-    boolean reinitialize() throws IOException
+    public boolean reinitialize() throws IOException
     {
         rein();