commit-classpath
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

FYI: cleaned up imports in java.security.interfaces


From: Dalibor Topic
Subject: FYI: cleaned up imports in java.security.interfaces
Date: Fri, 23 Apr 2004 20:15:38 +0200
User-agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7b) Gecko/20040316

hi all,

i've cleaned up imports in java.security.interfaces.

cheers,
dalibor topic

2004-04-23  Dalibor Topic  <address@hidden>

        * 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.
Index: java/security/interfaces/DSAKeyPairGenerator.java
===================================================================
RCS file: 
/cvsroot/classpath/classpath/java/security/interfaces/DSAKeyPairGenerator.java,v
retrieving revision 1.5
diff -u -r1.5 DSAKeyPairGenerator.java
--- java/security/interfaces/DSAKeyPairGenerator.java   12 Oct 2003 15:53:15 
-0000      1.5
+++ java/security/interfaces/DSAKeyPairGenerator.java   23 Apr 2004 18:08:43 
-0000
@@ -1,5 +1,5 @@
 /* DSAKeyPairGenerator.java -- Initialize a DSA key generator
-   Copyright (C) 1998 Free Software Foundation, Inc.
+   Copyright (C) 1998, 2004 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -37,8 +37,8 @@
 
 package java.security.interfaces;
 
-import java.security.SecureRandom;
 import java.security.InvalidParameterException;
+import java.security.SecureRandom;
 
 /**
  * This interface contains methods for intializing a Digital Signature
Index: java/security/interfaces/DSAPrivateKey.java
===================================================================
RCS file: 
/cvsroot/classpath/classpath/java/security/interfaces/DSAPrivateKey.java,v
retrieving revision 1.5
diff -u -r1.5 DSAPrivateKey.java
--- java/security/interfaces/DSAPrivateKey.java 12 Oct 2003 15:53:15 -0000      
1.5
+++ java/security/interfaces/DSAPrivateKey.java 23 Apr 2004 18:08:43 -0000
@@ -1,5 +1,5 @@
 /* DSAPublicKey.java -- A Digital Signature Algorithm private key
-   Copyright (C) 1998, 2000 Free Software Foundation, Inc.
+   Copyright (C) 1998, 2000, 2004 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -37,8 +37,8 @@
 
 package java.security.interfaces;
 
-import java.security.PrivateKey;
 import java.math.BigInteger;
+import java.security.PrivateKey;
 
 /**
  * This interface models a Digital Signature Algorithm (DSA) private key
Index: java/security/interfaces/DSAPublicKey.java
===================================================================
RCS file: 
/cvsroot/classpath/classpath/java/security/interfaces/DSAPublicKey.java,v
retrieving revision 1.5
diff -u -r1.5 DSAPublicKey.java
--- java/security/interfaces/DSAPublicKey.java  12 Oct 2003 15:53:15 -0000      
1.5
+++ java/security/interfaces/DSAPublicKey.java  23 Apr 2004 18:08:43 -0000
@@ -1,5 +1,5 @@
 /* DSAPublicKey.java -- A Digital Signature Algorithm public key
-   Copyright (C) 1998, 2000 Free Software Foundation, Inc.
+   Copyright (C) 1998, 2000, 2004 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -37,8 +37,8 @@
 
 package java.security.interfaces;
 
-import java.security.PublicKey;
 import java.math.BigInteger;
+import java.security.PublicKey;
 
 /**
  * This interface models a Digital Signature Algorithm (DSA) public key
Index: java/security/interfaces/RSAPrivateKey.java
===================================================================
RCS file: 
/cvsroot/classpath/classpath/java/security/interfaces/RSAPrivateKey.java,v
retrieving revision 1.6
diff -u -r1.6 RSAPrivateKey.java
--- java/security/interfaces/RSAPrivateKey.java 12 Oct 2003 15:53:15 -0000      
1.6
+++ java/security/interfaces/RSAPrivateKey.java 23 Apr 2004 18:08:43 -0000
@@ -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 @@
 
 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.
Index: java/security/interfaces/RSAPublicKey.java
===================================================================
RCS file: 
/cvsroot/classpath/classpath/java/security/interfaces/RSAPublicKey.java,v
retrieving revision 1.6
diff -u -r1.6 RSAPublicKey.java
--- java/security/interfaces/RSAPublicKey.java  12 Oct 2003 15:53:15 -0000      
1.6
+++ java/security/interfaces/RSAPublicKey.java  23 Apr 2004 18:08:43 -0000
@@ -1,5 +1,5 @@
 /* RSAPublicKey.java -- An RSA public 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 @@
 
 package java.security.interfaces;
 
-import java.security.PublicKey;
 import java.math.BigInteger;
+import java.security.PublicKey;
 
 /**
  * This interface provides access to information about an RSA public key.

reply via email to

[Prev in Thread] Current Thread [Next in Thread]