Author: simonetripodi Date: Wed Mar 6 09:02:58 2013 New Revision: 1453225 URL: http://svn.apache.org/r1453225 Log: trivial: code/javadoc format, no functional modification
Modified: commons/proper/fileupload/trunk/src/main/java/org/apache/commons/fileupload/servlet/FileCleanerCleanup.java Modified: commons/proper/fileupload/trunk/src/main/java/org/apache/commons/fileupload/servlet/FileCleanerCleanup.java URL: http://svn.apache.org/viewvc/commons/proper/fileupload/trunk/src/main/java/org/apache/commons/fileupload/servlet/FileCleanerCleanup.java?rev=1453225&r1=1453224&r2=1453225&view=diff ============================================================================== --- commons/proper/fileupload/trunk/src/main/java/org/apache/commons/fileupload/servlet/FileCleanerCleanup.java (original) +++ commons/proper/fileupload/trunk/src/main/java/org/apache/commons/fileupload/servlet/FileCleanerCleanup.java Wed Mar 6 09:02:58 2013 @@ -22,7 +22,6 @@ import javax.servlet.ServletContextEvent import org.apache.commons.io.FileCleaningTracker; - /** * A servlet context listener, which ensures that the * {@link org.apache.commons.io.FileCleaner FileCleaner's} @@ -30,6 +29,7 @@ import org.apache.commons.io.FileCleanin * when the web application is destroyed. */ public class FileCleanerCleanup implements ServletContextListener { + /** * Attribute name, which is used for storing an instance of * {@link FileCleaningTracker} in the web application. @@ -40,6 +40,7 @@ public class FileCleanerCleanup implemen /** * Returns the instance of {@link FileCleaningTracker}, which is * associated with the given {@link ServletContext}. + * * @param pServletContext The servlet context to query * @return The contexts tracker */ @@ -52,6 +53,7 @@ public class FileCleanerCleanup implemen /** * Sets the instance of {@link FileCleaningTracker}, which is * associated with the given {@link ServletContext}. + * * @param pServletContext The servlet context to modify * @param pTracker The tracker to set */ @@ -63,6 +65,7 @@ public class FileCleanerCleanup implemen /** * Called when the web application is initialized. Does * nothing. + * * @param sce The servlet context, used for calling * {@link #setFileCleaningTracker(ServletContext, FileCleaningTracker)}. */ @@ -74,10 +77,12 @@ public class FileCleanerCleanup implemen /** * Called when the web application is being destroyed. * Calls {@link FileCleaningTracker#exitWhenFinished()}. + * * @param sce The servlet context, used for calling * {@link #getFileCleaningTracker(ServletContext)}. */ public void contextDestroyed(ServletContextEvent sce) { getFileCleaningTracker(sce.getServletContext()).exitWhenFinished(); } + }