We don't need the sceneId or version in the base class.

git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@364 c613c5cb-e716-0410-b11b-feb51c14d237
This commit is contained in:
Michael Bayne
2007-07-17 01:24:56 +00:00
parent cb05d5f56b
commit 08f7029220
6 changed files with 16 additions and 16 deletions
@@ -40,12 +40,9 @@ import com.threerings.whirled.Log;
public abstract class AbstractSceneMoveHandler
implements SceneRegistry.ResolutionListener
{
public AbstractSceneMoveHandler (BodyObject body, int sceneId, int version,
InvocationService.InvocationListener listener)
public AbstractSceneMoveHandler (BodyObject body, InvocationService.InvocationListener listener)
{
_body = body;
_sceneId = sceneId;
_version = version;
_listener = listener;
}
@@ -84,7 +81,5 @@ public abstract class AbstractSceneMoveHandler
throws InvocationException;
protected BodyObject _body;
protected int _sceneId;
protected int _version;
protected InvocationService.InvocationListener _listener;
}