More style-related cleanup.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5247 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2008-07-22 12:51:17 +00:00
parent 0aa0e48c28
commit 09f8a25876
29 changed files with 48 additions and 64 deletions
@@ -21,7 +21,6 @@
package com.threerings.bureau.client;
import com.threerings.bureau.client.BureauReceiver;
import com.threerings.presents.client.InvocationDecoder;
/**
@@ -55,29 +55,25 @@ public class BureauDispatcher extends InvocationDispatcher<BureauMarshaller>
switch (methodId) {
case BureauMarshaller.AGENT_CREATED:
((BureauProvider)provider).agentCreated(
source,
((Integer)args[0]).intValue()
source, ((Integer)args[0]).intValue()
);
return;
case BureauMarshaller.AGENT_CREATION_FAILED:
((BureauProvider)provider).agentCreationFailed(
source,
((Integer)args[0]).intValue()
source, ((Integer)args[0]).intValue()
);
return;
case BureauMarshaller.AGENT_DESTROYED:
((BureauProvider)provider).agentDestroyed(
source,
((Integer)args[0]).intValue()
source, ((Integer)args[0]).intValue()
);
return;
case BureauMarshaller.BUREAU_INITIALIZED:
((BureauProvider)provider).bureauInitialized(
source,
(String)args[0]
source, (String)args[0]
);
return;
@@ -21,6 +21,7 @@
package com.threerings.bureau.server;
import com.threerings.bureau.client.BureauService;
import com.threerings.presents.data.ClientObject;
import com.threerings.presents.server.InvocationProvider;
@@ -22,7 +22,6 @@
package com.threerings.bureau.server;
import com.threerings.bureau.client.BureauDecoder;
import com.threerings.bureau.client.BureauReceiver;
import com.threerings.presents.data.ClientObject;
import com.threerings.presents.server.InvocationSender;