diff options
author | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-08-26 16:31:12 +0000 |
---|---|---|
committer | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-08-26 16:31:12 +0000 |
commit | b78a02b6e57c37750f37c317c357e74d9870caee (patch) | |
tree | 1ff2aee82e6fb4e57db29d394ba501562ca624cb /libjava | |
parent | 00ae537caec36774654bfdf7676d9356376fcd55 (diff) | |
download | gcc-b78a02b6e57c37750f37c317c357e74d9870caee.tar.gz |
* java/lang/ref/Reference.java (get): Indentation fix.
(clear): Comment fix.
(enqueue): Likewise.
(lock): Likewise.
(referent): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70814 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava')
-rw-r--r-- | libjava/ChangeLog | 8 | ||||
-rw-r--r-- | libjava/java/lang/ref/Reference.java | 16 |
2 files changed, 16 insertions, 8 deletions
diff --git a/libjava/ChangeLog b/libjava/ChangeLog index 25e337b59ff..2520e701f3b 100644 --- a/libjava/ChangeLog +++ b/libjava/ChangeLog @@ -1,5 +1,13 @@ 2003-08-26 Tom Tromey <tromey@redhat.com> + * java/lang/ref/Reference.java (get): Indentation fix. + (clear): Comment fix. + (enqueue): Likewise. + (lock): Likewise. + (referent): Likewise. + +2003-08-26 Tom Tromey <tromey@redhat.com> + PR java/12058: * java/lang/reflect/natArray.cc (set): Allow null as argument. diff --git a/libjava/java/lang/ref/Reference.java b/libjava/java/lang/ref/Reference.java index 3a2f91e8f16..2f6235e3ba8 100644 --- a/libjava/java/lang/ref/Reference.java +++ b/libjava/java/lang/ref/Reference.java @@ -40,7 +40,7 @@ package java.lang.ref; /** * This is the base class of all references. A reference allows - * refering to an object without preventing the garbage collection to + * refering to an object without preventing the garbage collector to * collect it. The only way to get the referred object is via the * <code>get()</code>-method. This method will return * <code>null</code> if the object was collected. <br> @@ -52,11 +52,11 @@ package java.lang.ref; * There are currently three types of references: soft reference, * weak reference and phantom reference. <br> * - * Soft references will be cleared if the garbage collection is told + * Soft references will be cleared if the garbage collector is told * to free some memory and there are no unreferenced or weakly referenced * objects. It is useful for caches. <br> * - * Weak references will be cleared as soon as the garbage collection + * Weak references will be cleared as soon as the garbage collector * determines that the refered object is only weakly reachable. They * are useful as keys in hashtables (see <code>WeakHashtable</code>) as * you get notified when nobody has the key anymore. @@ -74,7 +74,7 @@ public abstract class Reference { /** * The underlying object. This field is handled in a special way by - * the garbage collection. + * the garbage collector. * GCJ LOCAL: * This is a RawData because it must be disguised from the GC. * END GCJ LOCAL @@ -117,7 +117,7 @@ public abstract class Reference Reference nextOnQueue; /** - * This lock should be taken by the garbage collection, before + * This lock should be taken by the garbage collector, before * determining reachability. It will prevent the get()-method to * return the reference so that reachability doesn't change. */ @@ -162,7 +162,7 @@ public abstract class Reference */ public Object get() { - synchronized(lock) + synchronized (lock) { return referent; } @@ -171,7 +171,7 @@ public abstract class Reference /** * Clears the reference, so that it doesn't refer to its object * anymore. For soft and weak references this is called by the - * garbage collection. For phantom references you should call + * garbage collector. For phantom references you should call * this when enqueuing the reference. */ public void clear() @@ -190,7 +190,7 @@ public abstract class Reference /** * Enqueue an object on a reference queue. This is normally executed - * by the garbage collection. + * by the garbage collector. */ public boolean enqueue() { |