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]
Other format: [Raw text]

FYI: Patch: gnu.java.security.x509.X509Certificate


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Hi list,


I commited this obvious patch to trunk. writeReplace must be protected 
as defined in java.security.cert.Certificate.


Michael
- -- 
Homepage: http://www.worldforge.org/
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.1 (GNU/Linux)

iD8DBQE+8YcOWSOgCCdjSDsRAmmJAJ4rdfo5OTMBPRwMYB5uAbBsDfjdAgCfRpAb
EOyTbOmvOwav0EWwMtx8/O4=
=Sx5d
-----END PGP SIGNATURE-----
Index: ChangeLog
===================================================================
RCS file: /cvs/gcc/gcc/libjava/ChangeLog,v
retrieving revision 1.1963
diff -u -b -B -r1.1963 ChangeLog
--- ChangeLog	19 Jun 2003 09:33:58 -0000	1.1963
+++ ChangeLog	19 Jun 2003 09:42:21 -0000
@@ -1,5 +1,10 @@
 2003-06-19  Michael Koch  <konqueror@gmx.de>
 
+	* gnu/java/security/x509/X509Certificate.java
+	(writeReplace): Merged from classpath.
+
+2003-06-19  Michael Koch  <konqueror@gmx.de>
+
 	* gnu/java/nio/FileChannelImpl.java
 	(map_address): Made public.
 	(FileChannelImpl): Merged with classpath.
Index: gnu/java/security/x509/X509Certificate.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/gnu/java/security/x509/X509Certificate.java,v
retrieving revision 1.2
diff -u -b -B -r1.2 X509Certificate.java
--- gnu/java/security/x509/X509Certificate.java	17 Jun 2003 12:57:35 -0000	1.2
+++ gnu/java/security/x509/X509Certificate.java	19 Jun 2003 09:42:21 -0000
@@ -424,7 +424,7 @@
     return subjectKey;
   }
 
-  public Object writeReplace() throws ObjectStreamException
+  protected Object writeReplace() throws ObjectStreamException
   {
     return super.writeReplace();
   }

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