summaryrefslogtreecommitdiff
path: root/java/security/interfaces/RSAPrivateKey.java
diff options
context:
space:
mode:
authorDalibor Topic <robilad@yahoo.com>2004-04-23 18:14:04 +0000
committerDalibor Topic <robilad@yahoo.com>2004-04-23 18:14:04 +0000
commitb8e69fe1931f85361406c21f5d74068034009eef (patch)
tree7455da275506bc85d872b0434ad59dc0391da9bf /java/security/interfaces/RSAPrivateKey.java
parentf49eb64e8ac857e9504c81882a9faeffe06ca220 (diff)
downloadclasspath-b8e69fe1931f85361406c21f5d74068034009eef.tar.gz
Cleaned up imports in java.security.interfaces
2004-04-23 Dalibor Topic <robilad@kaffe.org> * java/security/interfaces/DSAKeyPairGenerator.java, java/security/interfaces/DSAPrivateKey.java, java/security/interfaces/DSAPublicKey.java, java/security/interfaces/RSAPrivateKey.java, java/security/interfaces/RSAPublicKey.java: Cleaned up imports.
Diffstat (limited to 'java/security/interfaces/RSAPrivateKey.java')
-rw-r--r--java/security/interfaces/RSAPrivateKey.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/java/security/interfaces/RSAPrivateKey.java b/java/security/interfaces/RSAPrivateKey.java
index 34b9798b6..d287d6732 100644
--- a/java/security/interfaces/RSAPrivateKey.java
+++ b/java/security/interfaces/RSAPrivateKey.java
@@ -1,5 +1,5 @@
/* RSAPrivateKey.java -- An RSA private key
- Copyright (C) 1998, 1999 Free Software Foundation, Inc.
+ Copyright (C) 1998, 1999, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@@ -37,8 +37,8 @@ exception statement from your version. */
package java.security.interfaces;
-import java.security.PrivateKey;
import java.math.BigInteger;
+import java.security.PrivateKey;
/**
* This interface provides access to information about an RSA private key.