PublicKey.java: Extend Key.

* java/security/PublicKey.java: Extend Key.
	* java/security/PrivateKey.java: Extend Key.

From-SVN: r42886
This commit is contained in:
Tom Tromey 2001-06-04 22:55:49 +00:00 committed by Tom Tromey
parent ae3ca0a985
commit 0f2257011a
3 changed files with 9 additions and 4 deletions

View file

@ -1,5 +1,5 @@
/* PublicKey.java -- "Super-interface" for all public keys
Copyright (C) 1998 Free Software Foundation, Inc.
Copyright (C) 1998, 2001 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -34,6 +34,6 @@ package java.security;
*
* @author Aaron M. Renn (arenn@urbanophile.com)
*/
public interface PublicKey
public interface PublicKey extends Key
{
}