From d3d22a6a9f061b1903c6ec839ee1acaca063a23e Mon Sep 17 00:00:00 2001 From: mkoch Date: Sat, 11 Oct 2003 19:00:07 +0000 Subject: 2003-10-11 Michael Koch * java/security/Key.java, * java/security/PrivateKey.java, * java/security/PublicKey.java, * java/security/acl/Acl.java, * java/security/acl/AclEntry.java, * java/security/acl/Group.java, * java/security/acl/Owner.java, * java/security/acl/Permission.java, * java/security/cert/X509Extension.java, * java/security/interfaces/DSAKey.java, * java/security/interfaces/DSAKeyPairGenerator.java, * java/security/interfaces/DSAParams.java, * java/security/interfaces/DSAPrivateKey.java, * java/security/interfaces/DSAPublicKey.java, * java/security/interfaces/RSAKey.java, * java/security/interfaces/RSAPrivateCrtKey.java, * java/security/interfaces/RSAPrivateKey.java, * java/security/interfaces/RSAPublicKey.java: Removed redundant modifiers. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72360 138bc75d-0d04-0410-961f-82ee72b054a4 --- libjava/java/security/interfaces/RSAKey.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'libjava/java/security/interfaces/RSAKey.java') diff --git a/libjava/java/security/interfaces/RSAKey.java b/libjava/java/security/interfaces/RSAKey.java index 1541884e75c..83cc286cfe0 100644 --- a/libjava/java/security/interfaces/RSAKey.java +++ b/libjava/java/security/interfaces/RSAKey.java @@ -37,6 +37,8 @@ exception statement from your version. */ package java.security.interfaces; +import java.math.BigInteger; + /** A generic RSA Key interface for public and private keys @@ -51,5 +53,5 @@ public interface RSAKey @returns a modulus */ - public java.math.BigInteger getModulus(); + BigInteger getModulus(); } -- cgit v1.2.3