Let new implementations of this have better variable names

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5616 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Jamie Doornbos
2009-01-04 21:24:20 +00:00
parent 05afcd70d9
commit e9bfc85db8
@@ -85,13 +85,13 @@ public class ClientManager
/** /**
* Called when a client has authenticated and been resolved and has started their session. * Called when a client has authenticated and been resolved and has started their session.
*/ */
void clientSessionDidStart (PresentsSession client); void clientSessionDidStart (PresentsSession session);
/** /**
* Called when a client has logged off or been forcibly logged off due to inactivity and * Called when a client has logged off or been forcibly logged off due to inactivity and
* has thus ended their session. * has thus ended their session.
*/ */
void clientSessionDidEnd (PresentsSession client); void clientSessionDidEnd (PresentsSession session);
} }
/** /**