UID.java (UID): Read `nextCount', not count.
authorTom Tromey <tromey@redhat.com>
Mon, 30 Aug 2004 16:45:04 +0000 (16:45 +0000)
committerAndreas Tobler <andreast@gcc.gnu.org>
Mon, 30 Aug 2004 16:45:04 +0000 (18:45 +0200)
2004-08-30  Tom Tromey  <tromey@redhat.com>

* java/rmi/server/UID.java (UID): Read `nextCount', not count.

From-SVN: r86785

libjava/ChangeLog
libjava/java/rmi/server/UID.java

index 0679c0219844210584faa9580f71a24d07e7f835..44d9ce4f1f9c0a9751678b34c11e973e84dfd7a2 100644 (file)
@@ -1,3 +1,7 @@
+2004-08-30  Tom Tromey  <tromey@redhat.com>
+
+       * java/rmi/server/UID.java (UID): Read `nextCount', not count.
+
 2004-08-30  Andreas Tobler  <a.tobler@schweiz.ch>
 
        * gnu/java/security/der/DEREncodingException.java: Remove whitespaces.
index a88cb8b08e04316f9a3d9144fb071e9357a98610..4c8a04110a8edd7f43e1ffb9345253e4f9d277ba 100644 (file)
@@ -1,5 +1,5 @@
 /*
-  Copyright (c) 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
+  Copyright (c) 1996, 1997, 1998, 1999, 2004 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -65,7 +65,7 @@ private short count;
  */
 public UID() {
        synchronized (lock) {
-               if (count == Short.MAX_VALUE) {
+               if (nextCount == Short.MAX_VALUE) {
                        long newtime;
                        for (;;) {
                                newtime = System.currentTimeMillis();