r27035 - trunk/freenet/src/freenet/client/async

[email protected] Sun, 19 Apr 2009 04:52:03 +0000
Newsgroups gmane.network.freenet.cvs
Message-ID <[email protected]>
Author: juiceman
Date: 2009-04-19 04:52:01 +0000 (Sun, 19 Apr 2009)
New Revision: 27035

Modified:
   trunk/freenet/src/freenet/client/async/RequestCooldownQueue.java
Log:
Compiler warning

Modified: trunk/freenet/src/freenet/client/async/RequestCooldownQueue.java
===================================================================
--- trunk/freenet/src/freenet/client/async/RequestCooldownQueue.java	2009-04-19 04:42:58 UTC (rev 27034)
+++ trunk/freenet/src/freenet/client/async/RequestCooldownQueue.java	2009-04-19 04:52:01 UTC (rev 27035)
@@ -128,7 +128,7 @@
 	 * @see freenet.client.async.CooldownQueue#removeKeyBefore(long)
 	 */
 	public synchronized Object removeKeyBefore(long now, long dontCareAfterMillis, ObjectContainer container, int maxKeys) {
-		ArrayList<Key> v = new ArrayList();
+		ArrayList<Key> v = new ArrayList<Key>();
 		boolean foundIT = false;
 		if(logDEBUG) {
 			foundIT = bigLog();