summaryrefslogtreecommitdiff
path: root/libjava/java/security/PrivateKey.java
diff options
context:
space:
mode:
authortromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>2001-06-04 22:55:49 +0000
committertromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>2001-06-04 22:55:49 +0000
commitda659f05fdbcbc0ce4b19ac40dca6eb47464a274 (patch)
tree6496e86a304cd8330d2e4e3974a2ab0b71eb2df7 /libjava/java/security/PrivateKey.java
parent6eadd25b6a191d786f9d6d4c54d18df1742592a1 (diff)
downloadgcc-da659f05fdbcbc0ce4b19ac40dca6eb47464a274.tar.gz
* java/security/PublicKey.java: Extend Key.
* java/security/PrivateKey.java: Extend Key. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@42886 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/java/security/PrivateKey.java')
-rw-r--r--libjava/java/security/PrivateKey.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/libjava/java/security/PrivateKey.java b/libjava/java/security/PrivateKey.java
index 7a736a5a538..a0bdd6b5f90 100644
--- a/libjava/java/security/PrivateKey.java
+++ b/libjava/java/security/PrivateKey.java
@@ -1,5 +1,5 @@
/* PrivateKey.java -- "Super-interface" for all private keys
- Copyright (C) 1998 Free Software Foundation, Inc.
+ Copyright (C) 1998, 2001 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@@ -35,6 +35,6 @@ package java.security;
*
* @author Aaron M. Renn (arenn@urbanophile.com)
*/
-public interface PrivateKey
+public interface PrivateKey extends Key
{
}