diff --git a/src/java/com/threerings/presents/net/AuthResponse.java b/src/java/com/threerings/presents/net/AuthResponse.java index 3cf306f1c..56428d740 100644 --- a/src/java/com/threerings/presents/net/AuthResponse.java +++ b/src/java/com/threerings/presents/net/AuthResponse.java @@ -1,5 +1,5 @@ // -// $Id: AuthResponse.java,v 1.10 2001/12/03 22:01:57 mdb Exp $ +// $Id: AuthResponse.java,v 1.11 2002/03/05 05:39:52 mdb Exp $ package com.threerings.presents.net; @@ -42,27 +42,6 @@ public class AuthResponse extends DownstreamMessage return _data; } - /** - * The authenticator can stuff information into the auth response that - * will be made available to the client management code on the server - * after the authentication process has completed. This is provided - * because the authenticator will likely end up doing things like - * loading information from a database which it will want to pass - * along to the running system once authentication is complete. - */ - public void setAuthInfo (Object authInfo) - { - _authInfo = authInfo; - } - - /** - * Returns the auth info provided by the authenticator implementation. - */ - public Object getAuthInfo () - { - return _authInfo; - } - public short getType () { return TYPE; @@ -88,7 +67,4 @@ public class AuthResponse extends DownstreamMessage } protected AuthResponseData _data; - - /** Stores auth info provided by the authenticator. */ - protected Object _authInfo; }