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/security | |
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/security')
-rw-r--r-- | libjava/java/security/SecureRandom.java | 4 | ||||
-rw-r--r-- | libjava/java/security/SignedObject.java | 6 | ||||
-rw-r--r-- | libjava/java/security/cert/X509Certificate.java | 2 | ||||
-rw-r--r-- | libjava/java/security/interfaces/DSAKey.java | 2 |
4 files changed, 7 insertions, 7 deletions
diff --git a/libjava/java/security/SecureRandom.java b/libjava/java/security/SecureRandom.java index 597d077..00fdca2 100644 --- a/libjava/java/security/SecureRandom.java +++ b/libjava/java/security/SecureRandom.java @@ -55,7 +55,7 @@ public class SecureRandom extends Random It is not seeded and should be seeded using setSeed or else on the first call to getnextBytes it will force a seed. - It is maintained for backwards compatability and programs + It is maintained for backwards compatibility and programs should use getInstance. */ public SecureRandom() @@ -115,7 +115,7 @@ public class SecureRandom extends Random It is seeded with the passed function and is useful if the user has access to hardware random device (like a radiation detector). - It is maintained for backwards compatability and programs + It is maintained for backwards compatibility and programs should use getInstance. @param seed Seed bytes for class diff --git a/libjava/java/security/SignedObject.java b/libjava/java/security/SignedObject.java index 34f80e9..40aeba7 100644 --- a/libjava/java/security/SignedObject.java +++ b/libjava/java/security/SignedObject.java @@ -80,7 +80,7 @@ public final class SignedObject implements Serializable @param signingKey the key to sign with @param signingEngine the signature engine to use - @throws IOException serialization error occured + @throws IOException serialization error occurred @throws InvalidKeyException invalid key @throws SignatureException signing error */ @@ -108,8 +108,8 @@ public final class SignedObject implements Serializable @return the encapsulated object - @throws IOException de-serialization error occured - @throws ClassNotFoundException de-serialization error occured + @throws IOException de-serialization error occurred + @throws ClassNotFoundException de-serialization error occurred */ public Object getObject() throws IOException, ClassNotFoundException { diff --git a/libjava/java/security/cert/X509Certificate.java b/libjava/java/security/cert/X509Certificate.java index 46f47f6..db51964 100644 --- a/libjava/java/security/cert/X509Certificate.java +++ b/libjava/java/security/cert/X509Certificate.java @@ -288,7 +288,7 @@ public abstract class X509Certificate extends Certificate implements X509Extensi @return the DER encoded tbsCertificate - @throws CertificateEncodingException if encoding error occured + @throws CertificateEncodingException if encoding error occurred */ public abstract byte[] getTBSCertificate() throws CertificateEncodingException; diff --git a/libjava/java/security/interfaces/DSAKey.java b/libjava/java/security/interfaces/DSAKey.java index 1670b5a..06fdec1 100644 --- a/libjava/java/security/interfaces/DSAKey.java +++ b/libjava/java/security/interfaces/DSAKey.java @@ -1,4 +1,4 @@ -/* DSAKey.java -- Interface for Digital Signature Algorith key +/* DSAKey.java -- Interface for Digital Signature Algorithm key Copyright (C) 1998 Free Software Foundation, Inc. This file is part of GNU Classpath. |