From aa0ca82cb1cf6ce3ff891f72328fc6ae7a29364f Mon Sep 17 00:00:00 2001 From: Jeroen Frijters Date: Mon, 11 Oct 2004 13:11:55 +0000 Subject: 2004-10-11 Jeroen Frijters * java/awt/EventDispatchThread.java (dispatchThreadNum): Removed initializer. (EventDispatchThread): Pre-increment dispatchThreadNum. * java/awt/Button.java (next_button_number): Removed useless initializer. * java/awt/Frame.java (next_frame_number): Likewise. * java/awt/Scrollbar.java (next_scrollbar_number): Likewise. * java/awt/TextArea.java (next_text_number): Likewise. * java/io/ObjectInputStream.java (dump): Likewise. * java/lang/reflect/Proxy.java (count): Likewise. * java/security/IdentityScope.java (systemScope): Likewise. * java/security/Policy.java (currentPolicy): Likewise. * java/util/Timer.java (nr): Likewise. * java/util/logging/LogRecord.java (lastSeqNum): Likewise. * javax/naming/spi/NamingManager.java (icfb, ofb): Likewise. * javax/swing/JDialog.java (decorated): Likewise. * javax/swing/JFrame.java (defaultLookAndFeelDecorated): Likewise. * javax/swing/plaf/basic/BasicToolBarUI.java (offset, regular): Made final. * javax/swing/plaf/basic/BasicScrollBarUI.java (DECREASE_HIGHLIGHT, INCREASE_HIGHLIGHT, NO_HIGHLIGHT, POSITIVE_SCROLL, NEGATIVE_SCROLL): Made final. * java/util/zip/ZipEntry.java (KNOWN_SIZE, KNOWN_CSIZE, KNOWN_CRC, KNOWN_TIME): Made final. * java/net/HttpURLConnection.java (valid_methods): Made final. --- java/security/IdentityScope.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'java/security/IdentityScope.java') diff --git a/java/security/IdentityScope.java b/java/security/IdentityScope.java index 5965a00a1..004f4ee4e 100644 --- a/java/security/IdentityScope.java +++ b/java/security/IdentityScope.java @@ -71,7 +71,7 @@ import java.util.Enumeration; public abstract class IdentityScope extends Identity { private static final long serialVersionUID = -2337346281189773310L; - private static IdentityScope systemScope = null; + private static IdentityScope systemScope; /** * This constructor is used for serialization only and should not be used by -- cgit v1.2.1