You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by kr...@apache.org on 2015/06/20 10:36:42 UTC

svn commit: r1686531 - /commons/proper/io/trunk/src/main/java/org/apache/commons/io/FileCleaningTracker.java

Author: krosenvold
Date: Sat Jun 20 08:36:42 2015
New Revision: 1686531

URL: http://svn.apache.org/r1686531
Log:
Reverted r1686512 changes back to package protected to make code compile

Modified:
    commons/proper/io/trunk/src/main/java/org/apache/commons/io/FileCleaningTracker.java

Modified: commons/proper/io/trunk/src/main/java/org/apache/commons/io/FileCleaningTracker.java
URL: http://svn.apache.org/viewvc/commons/proper/io/trunk/src/main/java/org/apache/commons/io/FileCleaningTracker.java?rev=1686531&r1=1686530&r2=1686531&view=diff
==============================================================================
--- commons/proper/io/trunk/src/main/java/org/apache/commons/io/FileCleaningTracker.java (original)
+++ commons/proper/io/trunk/src/main/java/org/apache/commons/io/FileCleaningTracker.java Sat Jun 20 08:36:42 2015
@@ -45,23 +45,23 @@ public class FileCleaningTracker {
     /**
      * Queue of <code>Tracker</code> instances being watched.
      */
-    private ReferenceQueue<Object> q = new ReferenceQueue<Object>();
+    ReferenceQueue<Object> q = new ReferenceQueue<Object>();
     /**
      * Collection of <code>Tracker</code> instances in existence.
      */
-    private final Collection<Tracker> trackers = Collections.synchronizedSet(new HashSet<Tracker>()); // synchronized
+    final Collection<Tracker> trackers = Collections.synchronizedSet(new HashSet<Tracker>()); // synchronized
     /**
      * Collection of File paths that failed to delete.
      */
-    private final List<String> deleteFailures = Collections.synchronizedList(new ArrayList<String>());
+    final List<String> deleteFailures = Collections.synchronizedList(new ArrayList<String>());
     /**
      * Whether to terminate the thread when the tracking is complete.
      */
-    private volatile boolean exitWhenFinished = false;
+    volatile boolean exitWhenFinished = false;
     /**
      * The thread that will clean up registered files.
      */
-    private Thread reaper;
+    Thread reaper;
 
     //-----------------------------------------------------------------------
     /**