Various Eclipse suggested bits.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2969 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2004-02-25 14:41:47 +00:00
parent 61d46f2768
commit ef748636e2
20 changed files with 31 additions and 56 deletions
@@ -1,12 +1,10 @@
//
// $Id: ChatDispatcher.java,v 1.6 2003/09/18 17:53:48 mdb Exp $
// $Id: ChatDispatcher.java,v 1.7 2004/02/25 14:41:47 mdb Exp $
package com.threerings.crowd.chat.server;
import com.threerings.crowd.chat.client.ChatService;
import com.threerings.crowd.chat.client.ChatService.TellListener;
import com.threerings.crowd.chat.data.ChatMarshaller;
import com.threerings.presents.client.Client;
import com.threerings.presents.client.InvocationService.InvocationListener;
import com.threerings.presents.data.ClientObject;
import com.threerings.presents.data.InvocationMarshaller;
@@ -1,5 +1,5 @@
//
// $Id: ChatProvider.java,v 1.25 2003/09/18 17:53:48 mdb Exp $
// $Id: ChatProvider.java,v 1.26 2004/02/25 14:41:47 mdb Exp $
package com.threerings.crowd.chat.server;
@@ -12,16 +12,15 @@ import com.threerings.util.TimeUtil;
import com.threerings.presents.client.InvocationService.InvocationListener;
import com.threerings.presents.data.ClientObject;
import com.threerings.presents.dobj.DObjectManager;
import com.threerings.presents.dobj.MessageEvent;
import com.threerings.presents.server.InvocationException;
import com.threerings.presents.server.InvocationManager;
import com.threerings.presents.server.InvocationProvider;
import com.threerings.crowd.Log;
import com.threerings.crowd.data.BodyObject;
import com.threerings.crowd.data.OccupantInfo;
import com.threerings.crowd.data.PlaceObject;
import com.threerings.crowd.server.AccessControl;
import com.threerings.crowd.server.CrowdServer;
import com.threerings.crowd.chat.client.ChatService.TellListener;
@@ -139,7 +138,7 @@ public class ChatProvider
// make sure the requesting user has broadcast privileges
if (!CrowdServer.actrl.checkAccess(body, BROADCAST_TOKEN)) {
throw new InvocationException(CrowdServer.actrl.LACK_ACCESS);
throw new InvocationException(AccessControl.LACK_ACCESS);
}
Iterator iter = CrowdServer.plreg.enumeratePlaces();
@@ -1,11 +1,9 @@
//
// $Id: SpeakDispatcher.java,v 1.3 2003/06/03 21:41:33 ray Exp $
// $Id: SpeakDispatcher.java,v 1.4 2004/02/25 14:41:47 mdb Exp $
package com.threerings.crowd.chat.server;
import com.threerings.crowd.chat.client.SpeakService;
import com.threerings.crowd.chat.data.SpeakMarshaller;
import com.threerings.presents.client.Client;
import com.threerings.presents.data.ClientObject;
import com.threerings.presents.data.InvocationMarshaller;
import com.threerings.presents.server.InvocationDispatcher;
@@ -1,5 +1,5 @@
//
// $Id: SpeakProvider.java,v 1.18 2003/12/09 21:01:43 mdb Exp $
// $Id: SpeakProvider.java,v 1.19 2004/02/25 14:41:47 mdb Exp $
package com.threerings.crowd.chat.server;
@@ -10,7 +10,6 @@ import com.samskivert.util.ObserverList;
import com.threerings.presents.data.ClientObject;
import com.threerings.presents.dobj.DObject;
import com.threerings.presents.dobj.MessageEvent;
import com.threerings.presents.server.InvocationProvider;
import com.threerings.crowd.Log;