This is the mail archive of the java-patches@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Patch: FYI: java.security re-merge


This re-merges a couple java.security classes with Classpath.
I'm checking it in.

java.security is the single largest merged-but-out-of-sync piece of
code.  Mostly the differences appear to be indentation; I believe
Bryce reindented it when he imported it into libgcj.  I prefer his
indentation; I'll probably check his version into Classpath "soon".

Tom

Index: ChangeLog
from  Tom Tromey  <tromey@redhat.com>
	* java/security/spec/AlgorithmParameterSpec.java,
	java/security/spec/KeySpec.java: Re-merged with Classpath.

Index: java/security/spec/AlgorithmParameterSpec.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/java/security/spec/AlgorithmParameterSpec.java,v
retrieving revision 1.2
diff -u -r1.2 AlgorithmParameterSpec.java
--- java/security/spec/AlgorithmParameterSpec.java 2001/04/25 15:45:13 1.2
+++ java/security/spec/AlgorithmParameterSpec.java 2001/09/02 06:35:04
@@ -36,6 +36,6 @@
 
 	@author Mark Benvenuto
 */
-public abstract interface AlgorithmParameterSpec
+public interface AlgorithmParameterSpec
 {
 }
Index: java/security/spec/KeySpec.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/java/security/spec/KeySpec.java,v
retrieving revision 1.2
diff -u -r1.2 KeySpec.java
--- java/security/spec/KeySpec.java 2001/04/25 15:45:13 1.2
+++ java/security/spec/KeySpec.java 2001/09/02 06:35:04
@@ -36,6 +36,6 @@
 
 	@author Mark Benvenuto
 */
-public abstract interface KeySpec 
+public interface KeySpec 
 {
 }


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]