From 637413a3aa799a9a8b041ee672ff39abc0efaba1 Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Tue, 5 Mar 2002 05:39:52 +0000 Subject: [PATCH] No longer need authinfo. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1087 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- .../threerings/presents/net/AuthResponse.java | 26 +------------------ 1 file changed, 1 insertion(+), 25 deletions(-) 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; }