From 0ef31916de15f7186de8d720d6cabc5d9bb5fe21 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Fri, 2 Apr 2004 21:29:25 +0000 Subject: * 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. --- java/security/spec/DSAPrivateKeySpec.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'java/security/spec/DSAPrivateKeySpec.java') 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; -- cgit v1.2.1