No need for these classes to extend DObject, that's weird.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3404 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2005-03-15 00:46:01 +00:00
parent d62b0dfdbb
commit e018791a80
2 changed files with 6 additions and 6 deletions
@@ -1,5 +1,5 @@
//
// $Id: AuthResponseData.java,v 1.11 2004/08/27 02:20:21 mdb Exp $
// $Id$
//
// Narya library - tools for developing networked games
// Copyright (C) 2002-2004 Three Rings Design, Inc., All Rights Reserved
@@ -21,7 +21,7 @@
package com.threerings.presents.net;
import com.threerings.presents.dobj.DObject;
import com.threerings.io.SimpleStreamableObject;
/**
* An <code>AuthResponseData</code> object is communicated back to the
@@ -29,7 +29,7 @@ import com.threerings.presents.dobj.DObject;
* of authentication success or failure along with bootstrap information
* for the client.
*/
public class AuthResponseData extends DObject
public class AuthResponseData extends SimpleStreamableObject
{
/** The constant used to indicate a successful authentication. */
public static final String SUCCESS = "success";
@@ -1,5 +1,5 @@
//
// $Id: BootstrapData.java,v 1.8 2004/08/27 02:20:22 mdb Exp $
// $Id$
//
// Narya library - tools for developing networked games
// Copyright (C) 2002-2004 Three Rings Design, Inc., All Rights Reserved
@@ -21,7 +21,7 @@
package com.threerings.presents.net;
import com.threerings.presents.dobj.DObject;
import com.threerings.io.SimpleStreamableObject;
import com.threerings.util.StreamableArrayList;
/**
@@ -30,7 +30,7 @@ import com.threerings.util.StreamableArrayList;
* prepared to deal with the client. It contains information the client
* will need to interact with the server.
*/
public class BootstrapData extends DObject
public class BootstrapData extends SimpleStreamableObject
{
/** The oid of this client's associated distributed object. */
public int clientOid;