2004-10-18 Jeroen Frijters <jeroen@frijters.net>
* java/util/Timer.java (nr): Removed useless initializer. * java/util/logging/LogRecord.java (lastSeqNum): Likewise. * javax/naming/spi/NamingManager.java (icfb, ofb): Likewise. From-SVN: r89206
This commit is contained in:
parent
73aab3dec3
commit
36071b5cbe
4 changed files with 13 additions and 4 deletions
|
@ -1,3 +1,12 @@
|
||||||
|
2004-10-18 Jeroen Frijters <jeroen@frijters.net>
|
||||||
|
|
||||||
|
* java/util/Timer.java
|
||||||
|
(nr): Removed useless initializer.
|
||||||
|
* java/util/logging/LogRecord.java
|
||||||
|
(lastSeqNum): Likewise.
|
||||||
|
* javax/naming/spi/NamingManager.java
|
||||||
|
(icfb, ofb): Likewise.
|
||||||
|
|
||||||
2004-10-18 Michael Koch <konqueror@gmx.de>
|
2004-10-18 Michael Koch <konqueror@gmx.de>
|
||||||
|
|
||||||
* gnu/java/net/PlainDatagramSocketImpl.java:
|
* gnu/java/net/PlainDatagramSocketImpl.java:
|
||||||
|
|
|
@ -376,7 +376,7 @@ public class Timer
|
||||||
|
|
||||||
// Number of Timers created.
|
// Number of Timers created.
|
||||||
// Used for creating nice Thread names.
|
// Used for creating nice Thread names.
|
||||||
private static int nr = 0;
|
private static int nr;
|
||||||
|
|
||||||
// The queue that all the tasks are put in.
|
// The queue that all the tasks are put in.
|
||||||
// Given to the scheduler
|
// Given to the scheduler
|
||||||
|
|
|
@ -384,7 +384,7 @@ public class LogRecord
|
||||||
/**
|
/**
|
||||||
* The last used sequence number for any LogRecord.
|
* The last used sequence number for any LogRecord.
|
||||||
*/
|
*/
|
||||||
private static long lastSeqNum = 0;
|
private static long lastSeqNum;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -55,10 +55,10 @@ public class NamingManager
|
||||||
{
|
{
|
||||||
public static final String CPE = "java.naming.spi.CannotProceedException";
|
public static final String CPE = "java.naming.spi.CannotProceedException";
|
||||||
|
|
||||||
private static InitialContextFactoryBuilder icfb = null;
|
private static InitialContextFactoryBuilder icfb;
|
||||||
|
|
||||||
// Package private so DirectoryManager can access it.
|
// Package private so DirectoryManager can access it.
|
||||||
static ObjectFactoryBuilder ofb = null;
|
static ObjectFactoryBuilder ofb;
|
||||||
|
|
||||||
// This class cannot be instantiated.
|
// This class cannot be instantiated.
|
||||||
NamingManager ()
|
NamingManager ()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue