Author: simonetripodi Date: Wed Mar 6 08:58:24 2013 New Revision: 1453221 URL: http://svn.apache.org/r1453221 Log: trivial: code/javadoc format, no functional modification
Modified: commons/proper/fileupload/trunk/src/main/java/org/apache/commons/fileupload/util/Closeable.java Modified: commons/proper/fileupload/trunk/src/main/java/org/apache/commons/fileupload/util/Closeable.java URL: http://svn.apache.org/viewvc/commons/proper/fileupload/trunk/src/main/java/org/apache/commons/fileupload/util/Closeable.java?rev=1453221&r1=1453220&r2=1453221&view=diff ============================================================================== --- commons/proper/fileupload/trunk/src/main/java/org/apache/commons/fileupload/util/Closeable.java (original) +++ commons/proper/fileupload/trunk/src/main/java/org/apache/commons/fileupload/util/Closeable.java Wed Mar 6 08:58:24 2013 @@ -18,21 +18,24 @@ package org.apache.commons.fileupload.ut import java.io.IOException; - /** * Interface of an object, which may be closed. */ public interface Closeable { + /** * Closes the object. + * * @throws IOException An I/O error occurred. */ void close() throws IOException; /** * Returns, whether the object is already closed. + * * @return True, if the object is closed, otherwise false. * @throws IOException An I/O error occurred. */ boolean isClosed() throws IOException; + }