Author: jochen
Date: Tue Jun 26 18:33:05 2007
New Revision: 551002

URL: http://svn.apache.org/viewvc?view=rev&rev=551002
Log:
Removed the @deprecation tags.

Modified:
    
jakarta/commons/proper/io/branches/b1_3/src/java/org/apache/commons/io/FileCleaner.java

Modified: 
jakarta/commons/proper/io/branches/b1_3/src/java/org/apache/commons/io/FileCleaner.java
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/io/branches/b1_3/src/java/org/apache/commons/io/FileCleaner.java?view=diff&rev=551002&r1=551001&r2=551002
==============================================================================
--- 
jakarta/commons/proper/io/branches/b1_3/src/java/org/apache/commons/io/FileCleaner.java
 (original)
+++ 
jakarta/commons/proper/io/branches/b1_3/src/java/org/apache/commons/io/FileCleaner.java
 Tue Jun 26 18:33:05 2007
@@ -35,7 +35,6 @@
  * @author Noel Bergman
  * @author Martin Cooper
  * @version $Id$
- * @deprecated Use [EMAIL PROTECTED] FileCleaningTracker}
  */
 public class FileCleaner {
     /**
@@ -52,7 +51,6 @@
      * @param file  the file to be tracked, not null
      * @param marker  the marker object used to track the file, not null
      * @throws NullPointerException if the file is null
-     * @deprecated Use [EMAIL PROTECTED] FileCleaningTracker#track(File, 
Object)}.
      */
     public static void track(File file, Object marker) {
         theInstance.track(file, marker);
@@ -67,7 +65,6 @@
      * @param marker  the marker object used to track the file, not null
      * @param deleteStrategy  the strategy to delete the file, null means 
normal
      * @throws NullPointerException if the file is null
-     * @deprecated Use [EMAIL PROTECTED] FileCleaningTracker#track(File, 
Object, FileDeleteStrategy)}.
      */
     public static void track(File file, Object marker, FileDeleteStrategy 
deleteStrategy) {
         theInstance.track(file, marker, deleteStrategy);
@@ -81,7 +78,6 @@
      * @param path  the full path to the file to be tracked, not null
      * @param marker  the marker object used to track the file, not null
      * @throws NullPointerException if the path is null
-     * @deprecated Use [EMAIL PROTECTED] FileCleaningTracker#track(String, 
Object)}.
      */
     public static void track(String path, Object marker) {
         theInstance.track(path, marker);
@@ -96,7 +92,6 @@
      * @param marker  the marker object used to track the file, not null
      * @param deleteStrategy  the strategy to delete the file, null means 
normal
      * @throws NullPointerException if the path is null
-     * @deprecated Use [EMAIL PROTECTED] FileCleaningTracker#track(String, 
Object, FileDeleteStrategy)}.
      */
     public static void track(String path, Object marker, FileDeleteStrategy 
deleteStrategy) {
         theInstance.track(path, marker, deleteStrategy);
@@ -108,7 +103,6 @@
      * awaiting deletion.
      *
      * @return the number of files being tracked
-     * @deprecated Use [EMAIL PROTECTED] FileCleaningTracker#getTrackCount()}.
      */
     public static int getTrackCount() {
         return theInstance.getTrackCount();
@@ -134,7 +128,6 @@
      * This method allows the thread to be terminated. Simply call this method
      * in the resource cleanup code, such as [EMAIL PROTECTED] 
javax.servlet.ServletContextListener#contextDestroyed}.
      * One called, no new objects can be tracked by the file cleaner.
-     * @deprecated Use [EMAIL PROTECTED] 
FileCleaningTracker#exitWhenFinished()}.
      */
     public static synchronized void exitWhenFinished() {
         theInstance.exitWhenFinished();



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to