Author: sebb Date: Tue May 20 17:14:21 2008 New Revision: 658503 URL: http://svn.apache.org/viewvc?rev=658503&view=rev Log: Correct Javadoc
Modified: commons/proper/net/branches/NET_2_0/src/main/java/org/apache/commons/net/ftp/Configurable.java Modified: commons/proper/net/branches/NET_2_0/src/main/java/org/apache/commons/net/ftp/Configurable.java URL: http://svn.apache.org/viewvc/commons/proper/net/branches/NET_2_0/src/main/java/org/apache/commons/net/ftp/Configurable.java?rev=658503&r1=658502&r2=658503&view=diff ============================================================================== --- commons/proper/net/branches/NET_2_0/src/main/java/org/apache/commons/net/ftp/Configurable.java (original) +++ commons/proper/net/branches/NET_2_0/src/main/java/org/apache/commons/net/ftp/Configurable.java Tue May 20 17:14:21 2008 @@ -25,13 +25,11 @@ */ 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); }