Commit 2cc07ffc by Michael Koch Committed by Michael Koch

Timer.java (DEFAULT_SIZE): Made static.

2004-11-17  Michael Koch  <konqueror@gmx.de>

	* java/util/Timer.java (DEFAULT_SIZE): Made static.

From-SVN: r90798
parent 879245b6
2004-11-17 Michael Koch <konqueror@gmx.de>
* java/util/Timer.java (DEFAULT_SIZE): Made static.
2004-11-17 Michael Koch <konqueror@gmx.de>
* java/net/InetAddress.java (getCanonicalHostName):
Support IPv6 addresses.
......
......@@ -74,7 +74,7 @@ public class Timer
private static final class TaskQueue
{
/** Default size of this queue */
private final int DEFAULT_SIZE = 32;
private static final int DEFAULT_SIZE = 32;
/** Whether to return null when there is nothing in the queue */
private boolean nullOnEmpty;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment