Updated to use the new Client-reference-free style.

git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@1042 c613c5cb-e716-0410-b11b-feb51c14d237
This commit is contained in:
Michael Bayne
2010-12-31 22:29:19 +00:00
parent 08572479f7
commit c8a4fbfd8b
41 changed files with 184 additions and 237 deletions
@@ -24,7 +24,6 @@ package com.threerings.whirled.data;
import javax.annotation.Generated;
import com.threerings.crowd.data.PlaceConfig;
import com.threerings.presents.client.Client;
import com.threerings.presents.data.InvocationMarshaller;
import com.threerings.presents.dobj.InvocationResponseEvent;
import com.threerings.whirled.client.SceneService;
@@ -134,12 +133,12 @@ public class SceneMarshaller extends InvocationMarshaller
public static final int MOVE_TO = 1;
// from interface SceneService
public void moveTo (Client arg1, int arg2, int arg3, SceneService.SceneMoveListener arg4)
public void moveTo (int arg1, int arg2, SceneService.SceneMoveListener arg3)
{
SceneMarshaller.SceneMoveMarshaller listener4 = new SceneMarshaller.SceneMoveMarshaller();
listener4.listener = arg4;
sendRequest(arg1, MOVE_TO, new Object[] {
Integer.valueOf(arg2), Integer.valueOf(arg3), listener4
SceneMarshaller.SceneMoveMarshaller listener3 = new SceneMarshaller.SceneMoveMarshaller();
listener3.listener = arg3;
sendRequest(MOVE_TO, new Object[] {
Integer.valueOf(arg1), Integer.valueOf(arg2), listener3
});
}
}