Eclipse suggested cleanup.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2971 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2004-02-25 14:50:28 +00:00
parent 6cd4e73720
commit d618d3c771
169 changed files with 208 additions and 661 deletions
@@ -1,15 +1,11 @@
//
// $Id: Client.java,v 1.47 2003/12/19 18:30:23 mdb Exp $
// $Id: Client.java,v 1.48 2004/02/25 14:45:16 mdb Exp $
package com.threerings.presents.client;
import java.util.ArrayList;
import java.util.List;
import com.samskivert.util.Interval;
import com.samskivert.util.IntervalManager;
import com.samskivert.util.ObserverList;
import com.samskivert.util.ResultListener;
import com.samskivert.util.RunAnywhere;
import com.threerings.presents.Log;
@@ -1,5 +1,5 @@
//
// $Id: Communicator.java,v 1.33 2003/08/08 20:20:39 mdb Exp $
// $Id: Communicator.java,v 1.34 2004/02/25 14:45:16 mdb Exp $
package com.threerings.presents.client;
@@ -28,11 +28,7 @@ import com.threerings.presents.net.AuthRequest;
import com.threerings.presents.net.AuthResponse;
import com.threerings.presents.net.AuthResponseData;
import com.threerings.presents.net.DownstreamMessage;
import com.threerings.presents.net.ForwardEventRequest;
import com.threerings.presents.net.LogoffRequest;
import com.threerings.presents.net.PingRequest;
import com.threerings.presents.net.SubscribeRequest;
import com.threerings.presents.net.UnsubscribeRequest;
import com.threerings.presents.net.UpstreamMessage;
/**
@@ -1,10 +1,9 @@
//
// $Id: DeltaCalculator.java,v 1.4 2003/09/25 15:57:38 mdb Exp $
// $Id: DeltaCalculator.java,v 1.5 2004/02/25 14:45:16 mdb Exp $
package com.threerings.presents.client;
import java.util.Arrays;
import com.samskivert.util.StringUtil;
import com.threerings.presents.Log;
import com.threerings.presents.net.PingRequest;
@@ -1,5 +1,5 @@
//
// $Id: InvocationDirector.java,v 1.32 2003/07/29 18:48:11 mdb Exp $
// $Id: InvocationDirector.java,v 1.33 2004/02/25 14:45:16 mdb Exp $
package com.threerings.presents.client;
@@ -7,7 +7,6 @@ import java.util.ArrayList;
import java.util.Iterator;
import com.samskivert.util.HashIntMap;
import com.samskivert.util.ResultListener;
import com.samskivert.util.StringUtil;
import com.threerings.presents.Log;
@@ -15,7 +14,6 @@ import com.threerings.presents.client.InvocationReceiver.Registration;
import com.threerings.presents.data.ClientObject;
import com.threerings.presents.data.InvocationMarshaller.ListenerMarshaller;
import com.threerings.presents.data.InvocationMarshaller;
import com.threerings.presents.dobj.DEvent;
import com.threerings.presents.dobj.DObject;
@@ -1,10 +1,9 @@
//
// $Id: SafeInterval.java,v 1.2 2003/11/12 23:37:47 mdb Exp $
// $Id: SafeInterval.java,v 1.3 2004/02/25 14:45:16 mdb Exp $
package com.threerings.presents.client.util;
import com.samskivert.util.Interval;
import com.samskivert.util.IntervalManager;
import com.threerings.presents.client.Client;
@@ -1,13 +1,11 @@
//
// $Id: ClientObject.dobj,v 1.3 2002/11/26 02:14:24 mdb Exp $
// $Id: ClientObject.dobj,v 1.4 2004/02/25 14:45:16 mdb Exp $
package com.threerings.presents.data;
import com.threerings.presents.dobj.DObject;
import com.threerings.presents.dobj.DSet;
import com.threerings.presents.Log;
/**
* Every client in the system has an associated client object to which
* only they subscribe. The client object can be used to deliver messages
@@ -1,13 +1,11 @@
//
// $Id: ClientObject.java,v 1.7 2003/04/30 22:45:57 mdb Exp $
// $Id: ClientObject.java,v 1.8 2004/02/25 14:45:16 mdb Exp $
package com.threerings.presents.data;
import com.threerings.presents.dobj.DObject;
import com.threerings.presents.dobj.DSet;
import com.threerings.presents.Log;
/**
* Every client in the system has an associated client object to which
* only they subscribe. The client object can be used to deliver messages
@@ -1,9 +1,8 @@
//
// $Id: CompoundEvent.java,v 1.9 2003/04/10 17:48:42 mdb Exp $
// $Id: CompoundEvent.java,v 1.10 2004/02/25 14:45:16 mdb Exp $
package com.threerings.presents.dobj;
import java.util.ArrayList;
import java.util.List;
import com.threerings.util.StreamableArrayList;
@@ -1,12 +1,11 @@
//
// $Id: DObject.java,v 1.71 2003/12/11 18:36:32 mdb Exp $
// $Id: DObject.java,v 1.72 2004/02/25 14:45:16 mdb Exp $
package com.threerings.presents.dobj;
import java.lang.reflect.Array;
import java.lang.reflect.Field;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Comparator;
import java.util.HashMap;
@@ -1,5 +1,5 @@
//
// $Id: ElementUpdatedEvent.java,v 1.7 2003/05/01 02:05:51 ray Exp $
// $Id: ElementUpdatedEvent.java,v 1.8 2004/02/25 14:45:16 mdb Exp $
package com.threerings.presents.dobj;
@@ -8,8 +8,6 @@ import java.lang.reflect.Field;
import com.samskivert.util.StringUtil;
import com.threerings.presents.Log;
/**
* An element updated event is dispatched when an element of an array
* field in a distributed object is updated. It can also be constructed to
@@ -1,5 +1,5 @@
//
// $Id: InvocationManager.java,v 1.19 2003/12/09 20:41:23 mdb Exp $
// $Id: InvocationManager.java,v 1.20 2004/02/25 14:45:16 mdb Exp $
package com.threerings.presents.server;
@@ -9,24 +9,20 @@ import com.samskivert.util.HashIntMap;
import com.samskivert.util.LRUHashMap;
import com.samskivert.util.StringUtil;
import com.threerings.io.Streamable;
import com.threerings.util.StreamableArrayList;
import com.threerings.presents.Log;
import com.threerings.presents.data.ClientObject;
import com.threerings.presents.data.InvocationMarshaller.ListenerMarshaller;
import com.threerings.presents.data.InvocationMarshaller;
import com.threerings.presents.data.InvocationObject;
import com.threerings.presents.dobj.DEvent;
import com.threerings.presents.dobj.DObject;
import com.threerings.presents.dobj.EventListener;
import com.threerings.presents.dobj.InvocationRequestEvent;
import com.threerings.presents.dobj.MessageEvent;
import com.threerings.presents.dobj.ObjectAccessException;
import com.threerings.presents.dobj.RootDObjectManager;
import com.threerings.presents.dobj.Subscriber;
import com.threerings.presents.dobj.Subscriber;
/**
* The invocation services provide client to server invocations (service
@@ -1,5 +1,5 @@
//
// $Id: PresentsServer.java,v 1.38 2003/08/13 22:46:13 mdb Exp $
// $Id: PresentsServer.java,v 1.39 2004/02/25 14:45:16 mdb Exp $
package com.threerings.presents.server;
@@ -14,7 +14,6 @@ import com.threerings.util.signal.SignalManager;
import com.threerings.presents.Log;
import com.threerings.presents.client.Client;
import com.threerings.presents.dobj.DObjectManager;
import com.threerings.presents.server.net.ConnectionManager;
import com.threerings.presents.server.util.SafeInterval;
import com.threerings.presents.util.Invoker;
@@ -1,16 +1,12 @@
//
// $Id: Connection.java,v 1.17 2004/02/21 00:51:02 mdb Exp $
// $Id: Connection.java,v 1.18 2004/02/25 14:45:16 mdb Exp $
package com.threerings.presents.server.net;
import java.io.EOFException;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.InetAddress;
import java.net.Socket;
import java.net.SocketTimeoutException;
import java.nio.channels.SelectionKey;
import java.nio.channels.SocketChannel;
@@ -1,5 +1,5 @@
//
// $Id: ConnectionManager.java,v 1.37 2003/10/26 05:18:13 mdb Exp $
// $Id: ConnectionManager.java,v 1.38 2004/02/25 14:45:16 mdb Exp $
package com.threerings.presents.server.net;
@@ -13,7 +13,6 @@ import java.nio.channels.SocketChannel;
import java.nio.channels.spi.SelectorProvider;
import java.net.InetSocketAddress;
import java.net.SocketException;
import java.util.ArrayList;
import java.util.HashMap;
@@ -26,7 +25,6 @@ import com.threerings.io.FramingOutputStream;
import com.threerings.io.ObjectOutputStream;
import com.threerings.presents.Log;
import com.threerings.presents.client.Client;
import com.threerings.presents.net.AuthRequest;
import com.threerings.presents.net.AuthResponse;
@@ -1,5 +1,5 @@
//
// $Id: RunningConnection.java,v 1.11 2002/12/22 19:13:38 mdb Exp $
// $Id: RunningConnection.java,v 1.12 2004/02/25 14:45:16 mdb Exp $
package com.threerings.presents.server.net;
@@ -7,8 +7,6 @@ import java.io.IOException;
import java.nio.channels.SelectionKey;
import java.nio.channels.SocketChannel;
import com.samskivert.util.StringUtil;
import com.threerings.presents.net.UpstreamMessage;
/**
@@ -1,10 +1,9 @@
//
// $Id: SafeInterval.java,v 1.2 2002/05/24 21:38:24 mdb Exp $
// $Id: SafeInterval.java,v 1.3 2004/02/25 14:45:16 mdb Exp $
package com.threerings.presents.server.util;
import com.samskivert.util.Interval;
import com.samskivert.util.IntervalManager;
import com.threerings.presents.server.PresentsDObjectMgr;