Logon not login.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@121 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2001-07-25 00:26:44 +00:00
parent 15bb149600
commit 0c59e20f23
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -52,7 +52,7 @@ has to be registered in a single place, since it pretty much does anyway.
* Client detail:
+ Supply credentials (username, password)
+ Establishes, maintains connection:
login (connect), logout (disconnect)
logon (connect), logout (disconnect)
+ Creates, manages client-side DObjectManager
* Events in the client will be dispatched on the AWT thread
@@ -1,5 +1,5 @@
//
// $Id: Communicator.java,v 1.10 2001/07/19 07:48:25 mdb Exp $
// $Id: Communicator.java,v 1.11 2001/07/25 00:26:44 mdb Exp $
package com.threerings.cocktail.cher.client;
@@ -340,7 +340,7 @@ public class Communicator
Log.info("Got auth response: " + data);
// if the auth request failed, we want to let the communicator
// know by throwing a login exception
// know by throwing a logon exception
if (!data.code.equals(Codes.SUCCESS)) {
throw new LogonException(data.code);
}