diff options
author | Joseph Myers <jsm28@gcc.gnu.org> | 2001-10-31 00:48:17 +0000 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2001-10-31 00:48:17 +0000 |
commit | 18e1f2bd67da8877099783f42634d8692bd80ec9 (patch) | |
tree | 5308302766b87f978a067f91b79c6b91b4198025 /libjava/java/lang | |
parent | ffc5527fa5cbb518a4bc564b87b8376f5206787f (diff) | |
download | gcc-18e1f2bd67da8877099783f42634d8692bd80ec9.zip gcc-18e1f2bd67da8877099783f42634d8692bd80ec9.tar.gz gcc-18e1f2bd67da8877099783f42634d8692bd80ec9.tar.bz2 |
HACKING, [...]: Fix spelling errors.
* HACKING, gnu/gcj/xlib/Pixmap.java, gnu/gcj/xlib/XException.java,
gnu/java/rmi/rmic/RMIC.java, java/awt/Window.java,
java/awt/AWTEvent.java, java/io/ByteArrayOutputStream.java,
java/io/CharConversionException.java,
java/io/PipedInputStream.java, java/io/PipedReader.java,
java/io/PrintWriter.java, java/io/WriteAbortedException.java,
java/io/natFileWin32.cc, java/lang/Class.h,
java/lang/natClassLoader.cc, java/lang/natObject.cc,
java/lang/Package.java, java/net/BindException.java,
java/net/ConnectException.java, java/net/ProtocolException.java,
java/net/SocketException.java,
java/net/UnknownServiceException.java,
java/security/cert/X509Certificate.java,
java/security/interfaces/DSAKey.java,
java/security/SecureRandom.java, java/security/SignedObject.java,
java/sql/DatabaseMetaData.java,
java/text/DecimalFormatSymbols.java,
java/util/jar/Attributes.java, java/util/jar/JarEntry.java,
java/util/jar/JarInputStream.java,
java/util/jar/JarOutputStream.java, java/util/Calendar.java,
java/util/Collections.java, java/util/GregorianCalendar.java,
java/util/HashMap.java, java/util/List.java,
java/util/Properties.java, java/util/Timer.java,
java/util/Vector.java, java/util/WeakHashMap.java,
javax/naming/NamingException.java,
testsuite/libjava.lang/Thread_Wait.java,
org/xml/sax/helpers/DefaultHandler.java,
org/xml/sax/HandlerBase.java, org/xml/sax/SAXParseException.java,
ChangeLog, acinclude.m4, aclocal.m4, posix-threads.cc: Fix
spelling errors.
* configure: Regenerate.
From-SVN: r46665
Diffstat (limited to 'libjava/java/lang')
-rw-r--r-- | libjava/java/lang/Class.h | 2 | ||||
-rw-r--r-- | libjava/java/lang/Package.java | 2 | ||||
-rw-r--r-- | libjava/java/lang/natClassLoader.cc | 2 | ||||
-rw-r--r-- | libjava/java/lang/natObject.cc | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/libjava/java/lang/Class.h b/libjava/java/lang/Class.h index 24ca5b1..f84f363 100644 --- a/libjava/java/lang/Class.h +++ b/libjava/java/lang/Class.h @@ -305,7 +305,7 @@ private: friend jshort _Jv_FindIIndex (jclass *, jshort *, jshort); // Return array class corresponding to element type KLASS, creating it if - // neccessary. + // necessary. inline friend jclass _Jv_GetArrayClass (jclass klass, java::lang::ClassLoader *loader) { diff --git a/libjava/java/lang/Package.java b/libjava/java/lang/Package.java index 189d26e..e7ca668 100644 --- a/libjava/java/lang/Package.java +++ b/libjava/java/lang/Package.java @@ -39,7 +39,7 @@ import java.util.StringTokenizer; * <a href="http://java.sun.com/products/jdk/1.3/docs/guide/versioning/spec/VersioningSpecification.html">Product Versioning Specification</a>. * It also allows packages to be sealed with respect to the originating URL. * <p> - * The most usefull method is the <code>isCompatibleWith()</code> method that + * The most useful method is the <code>isCompatibleWith()</code> method that * compares a desired version of a specification with the version of the * specification as implemented by a package. A package is considered * compatible with another version if the version of the specification is diff --git a/libjava/java/lang/natClassLoader.cc b/libjava/java/lang/natClassLoader.cc index 7d36607..d94055e 100644 --- a/libjava/java/lang/natClassLoader.cc +++ b/libjava/java/lang/natClassLoader.cc @@ -657,7 +657,7 @@ _Jv_NewArrayClass (jclass element, java::lang::ClassLoader *loader, array_class->interface_count = sizeof interfaces / sizeof interfaces[0]; // Since all array classes have the same interface dispatch table, we can - // cache one and reuse it. It is not neccessary to synchronize this. + // cache one and reuse it. It is not necessary to synchronize this. if (!array_idt) { _Jv_PrepareConstantTimeTables (array_class); diff --git a/libjava/java/lang/natObject.cc b/libjava/java/lang/natObject.cc index 17d8dbc..816268c 100644 --- a/libjava/java/lang/natObject.cc +++ b/libjava/java/lang/natObject.cc @@ -746,7 +746,7 @@ heavy_lock_obj_finalization_proc (void *obj, void *cd) // heavy lock. Unlink it and, if necessary, register a finalizer // to destroy sync_info. unlink_heavy(addr, he); - hl -> address = 0; // Dont destroy it again. + hl -> address = 0; // Don't destroy it again. release_set(&(he -> address), he_address); # if defined (_Jv_HaveCondDestroy) || defined (_Jv_HaveMutexDestroy) // Make sure lock is not held and then destroy condvar and mutex. |