diff options
author | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-05-07 19:07:07 +0000 |
---|---|---|
committer | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-05-07 19:07:07 +0000 |
commit | 863a47b2dfe4a0d8ef9fb741f6f29677b7f5b43b (patch) | |
tree | 39c052c1c2e5c30765359d3375883b016ac8e851 /libjava | |
parent | 63e428d5ae7d26eb5c852c69bd8b5a70bde3f9a1 (diff) | |
download | gcc-863a47b2dfe4a0d8ef9fb741f6f29677b7f5b43b.tar.gz |
* java/lang/natString.cc (unintern): Fixed typo.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@53265 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava')
-rw-r--r-- | libjava/ChangeLog | 4 | ||||
-rw-r--r-- | libjava/java/lang/natString.cc | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/libjava/ChangeLog b/libjava/ChangeLog index dcc6d353fe0..885dc28d044 100644 --- a/libjava/ChangeLog +++ b/libjava/ChangeLog @@ -1,3 +1,7 @@ +2002-05-07 Tom Tromey <tromey@redhat.com> + + * java/lang/natString.cc (unintern): Fixed typo. + 2002-05-06 David.Billinghurst <David.Billinghurst@riotinto.com> * testsuite/lib/libjava.exp (libjava_arguments): Don't link diff --git a/libjava/java/lang/natString.cc b/libjava/java/lang/natString.cc index ff3bf9beb39..328f1ad3bc5 100644 --- a/libjava/java/lang/natString.cc +++ b/libjava/java/lang/natString.cc @@ -1,6 +1,6 @@ // natString.cc - Implementation of java.lang.String native methods. -/* Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation +/* Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software Foundation This file is part of libgcj. @@ -198,7 +198,7 @@ unintern (jobject obj) // interning the String. If we subsequently re-intern the same // String, then we set the bit. When finalizing, if the bit is set // then we clear it and re-register the finalizer. We know this is - // a safe approach because both the intern() and unintern() acquire + // a safe approach because both intern() and unintern() acquire // the class lock; this bit can't be manipulated when the lock is // not held. So if we are finalizing and the bit is clear then we // know all references are gone and we can clear the entry in the |