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,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;