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: java.rmi


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

Hi list,


I commited the attached patch to make some little fixes in java.rmi.


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

iD8DBQE+/GqTWSOgCCdjSDsRAszTAJ9jvAaJJHdHRYVtDQ2CixZwrapVQwCeJpb2
ZJ9yaxjJeH3vBSH1a1P5WUY=
=IJt1
-----END PGP SIGNATURE-----
Index: ChangeLog
===================================================================
RCS file: /cvs/gcc/gcc/libjava/ChangeLog,v
retrieving revision 1.2004
diff -u -b -B -r1.2004 ChangeLog
--- ChangeLog	27 Jun 2003 15:49:36 -0000	1.2004
+++ ChangeLog	27 Jun 2003 15:54:46 -0000
@@ -1,5 +1,12 @@
 2003-06-27  Michael Koch  <konqueror@gmx.de>
 
+	* java/rmi/server/SkeletonNotFoundException.java
+	(SkeletonNotFoundException): Removed wrong @deprecated tag.
+	* java/rmi/server/UnicastRemoteObject.java
+	(exportObject): Made package-private.
+
+2003-06-27  Michael Koch  <konqueror@gmx.de>
+
 	* java/text/Format.java
 	(serialVersionUID): Fixed value.
 
Index: java/rmi/server/SkeletonNotFoundException.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/java/rmi/server/SkeletonNotFoundException.java,v
retrieving revision 1.3
diff -u -b -B -r1.3 SkeletonNotFoundException.java
--- java/rmi/server/SkeletonNotFoundException.java	17 Jun 2002 19:11:40 -0000	1.3
+++ java/rmi/server/SkeletonNotFoundException.java	27 Jun 2003 15:54:46 -0000
@@ -59,7 +60,6 @@
    * Create an exception with the specified message.
    *
    * @param s the message
-   * @deprecated no longer needed
    */
   public SkeletonNotFoundException(String s)
   {
@@ -71,7 +71,6 @@
    *
    * @param s the message
    * @param e the cause
-   * @deprecated no longer needed
    */
   public SkeletonNotFoundException(String s, Exception e)
   {
Index: java/rmi/server/UnicastRemoteObject.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/java/rmi/server/UnicastRemoteObject.java,v
retrieving revision 1.5
diff -u -b -B -r1.5 UnicastRemoteObject.java
--- java/rmi/server/UnicastRemoteObject.java	3 Jan 2003 22:57:25 -0000	1.5
+++ java/rmi/server/UnicastRemoteObject.java	27 Jun 2003 15:54:46 -0000
@@ -89,7 +90,7 @@
     return exportObject(obj, port, null);
   }
   
-  protected static Remote exportObject(Remote obj, int port, RMIServerSocketFactory ssf) 
+  static Remote exportObject(Remote obj, int port, RMIServerSocketFactory ssf) 
     throws RemoteException 
   {
     UnicastServerRef sref = null;
@@ -103,7 +104,7 @@
   }
 
   /**
-   * FIX ME
+   * FIXME
    */
   public static Remote exportObject(Remote obj, int port, RMIClientSocketFactory csf, 
 				    RMIServerSocketFactory ssf) 

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