Author: sebb Date: Tue May 20 13:18:00 2008 New Revision: 658410 URL: http://svn.apache.org/viewvc?rev=658410&view=rev Log: Correct Javadoc
Modified: commons/proper/net/trunk/src/java/org/apache/commons/net/ftp/Configurable.java Modified: commons/proper/net/trunk/src/java/org/apache/commons/net/ftp/Configurable.java URL: http://svn.apache.org/viewvc/commons/proper/net/trunk/src/java/org/apache/commons/net/ftp/Configurable.java?rev=658410&r1=658409&r2=658410&view=diff ============================================================================== --- commons/proper/net/trunk/src/java/org/apache/commons/net/ftp/Configurable.java (original) +++ commons/proper/net/trunk/src/java/org/apache/commons/net/ftp/Configurable.java Tue May 20 13:18:00 2008 @@ -24,13 +24,12 @@ */ public interface Configurable { - /** - * @param config the object containing the configuration data - * @return the object being configured after the configuration - * @throws IllegalArgumentException if the elements of the - * <code>config</code> are somehow inadequate to configure the - * Configurable object. - */ - public void configure( - FTPClientConfig config); + /** + * @param config the object containing the configuration data + * @throws IllegalArgumentException if the elements of the + * <code>config</code> are somehow inadequate to configure the + * Configurable object. + */ + public void configure( + FTPClientConfig config); } \ No newline at end of file