diff options
Diffstat (limited to 'libjava/java/rmi/server/RemoteStub.java')
-rw-r--r-- | libjava/java/rmi/server/RemoteStub.java | 38 |
1 files changed, 20 insertions, 18 deletions
diff --git a/libjava/java/rmi/server/RemoteStub.java b/libjava/java/rmi/server/RemoteStub.java index f0123e96c48..83cce3514e9 100644 --- a/libjava/java/rmi/server/RemoteStub.java +++ b/libjava/java/rmi/server/RemoteStub.java @@ -1,5 +1,5 @@ /* - Copyright (c) 1996, 1997, 1998, 1999 Free Software Foundation, Inc. + Copyright (c) 1996, 1997, 1998, 1999, 2002 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -38,20 +38,22 @@ exception statement from your version. */ package java.rmi.server; public abstract class RemoteStub - extends RemoteObject { - -public static final long serialVersionUID = -1585587260594494182l; - -protected RemoteStub() { - super(); -} - -protected RemoteStub(RemoteRef ref) { - super(ref); -} - -protected static void setRef(RemoteStub stub, RemoteRef ref) { - stub.ref = ref; -} - -} + extends RemoteObject +{ + static final long serialVersionUID = -1585587260594494182l; + + protected RemoteStub () + { + super (); + } + + protected RemoteStub (RemoteRef ref) + { + super (ref); + } + + protected static void setRef (RemoteStub stub, RemoteRef ref) + { + stub.ref = ref; + } +} // class RemoteSub |