You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2010/01/09 02:05:46 UTC

svn commit: r897361 - /commons/proper/io/trunk/src/test/org/apache/commons/io/FileCleaningTrackerTestCase.java

Author: sebb
Date: Sat Jan  9 01:05:45 2010
New Revision: 897361

URL: http://svn.apache.org/viewvc?rev=897361&view=rev
Log:
Fix raw types

Modified:
    commons/proper/io/trunk/src/test/org/apache/commons/io/FileCleaningTrackerTestCase.java

Modified: commons/proper/io/trunk/src/test/org/apache/commons/io/FileCleaningTrackerTestCase.java
URL: http://svn.apache.org/viewvc/commons/proper/io/trunk/src/test/org/apache/commons/io/FileCleaningTrackerTestCase.java?rev=897361&r1=897360&r2=897361&view=diff
==============================================================================
--- commons/proper/io/trunk/src/test/org/apache/commons/io/FileCleaningTrackerTestCase.java (original)
+++ commons/proper/io/trunk/src/test/org/apache/commons/io/FileCleaningTrackerTestCase.java Sat Jan  9 01:05:45 2010
@@ -80,7 +80,7 @@
          * which we should, IMO, not.
          */
         {
-            theInstance.q = new ReferenceQueue();
+            theInstance.q = new ReferenceQueue<Object>();
             theInstance.trackers.clear();
             theInstance.exitWhenFinished = false;
             theInstance.reaper = null;