summaryrefslogtreecommitdiff
path: root/java/security/spec/DSAPrivateKeySpec.java
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2004-04-02 21:29:25 +0000
committerTom Tromey <tromey@redhat.com>2004-04-02 21:29:25 +0000
commit0ef31916de15f7186de8d720d6cabc5d9bb5fe21 (patch)
tree41276049602d828a2de3b22bdb69781ebd2582dc /java/security/spec/DSAPrivateKeySpec.java
parent718b18c26126e182be0c3aee96bc82654d1aa02e (diff)
downloadclasspath-0ef31916de15f7186de8d720d6cabc5d9bb5fe21.tar.gz
* java/rmi/MarshalledObject.java (MarshalledObject): Removed
redundant `extends'. * java/security/Security.java (Security): Removed redundant `extends'. * java/security/spec/DSAPublicKeySpec.java (DSAPublicKeySpec): Removed redundant `extends'. * java/security/spec/DSAPrivateKeySpec.java (DSAPrivateKeySpec): Removed redundant `extends'. * java/security/spec/DSAParameterSpec.java (DSAParameterSpec): Removed redundant `extends'. * javax/naming/directory/SearchControls.java (SearchControls): Removed redundant `extends'. * javax/naming/spi/DirStateFactory.java (Result): Removed redundant modifiers. * java/util/Map.java (Entry): Removed redundant modifiers. * java/text/AttributedCharacterIterator.java (Attribute): Removed redundant modifiers. * java/security/Security.java (provides): Removed unused label.
Diffstat (limited to 'java/security/spec/DSAPrivateKeySpec.java')
-rw-r--r--java/security/spec/DSAPrivateKeySpec.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/java/security/spec/DSAPrivateKeySpec.java b/java/security/spec/DSAPrivateKeySpec.java
index b4025d61c..c148481ca 100644
--- a/java/security/spec/DSAPrivateKeySpec.java
+++ b/java/security/spec/DSAPrivateKeySpec.java
@@ -1,5 +1,5 @@
/* DSAPrivateKeySpec.java --- DSA Private Key Specificaton class
- Copyright (C) 1999 Free Software Foundation, Inc.
+ Copyright (C) 1999, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@@ -47,7 +47,7 @@ import java.math.BigInteger;
@author Mark Benvenuto
*/
-public class DSAPrivateKeySpec extends Object implements KeySpec
+public class DSAPrivateKeySpec implements KeySpec
{
private BigInteger x = null;
private BigInteger p = null;