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
This commit is contained in:
Michael Koch 2004-11-17 08:11:22 +00:00 committed by Michael Koch
parent 879245b6b2
commit 2cc07ffcf1
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
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):

View File

@ -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;