From: <sno...@us...> - 2013-09-14 17:15:42
|
Revision: 98 http://sourceforge.net/p/openrpg/svn/98 Author: snowdog_ Date: 2013-09-14 17:15:39 +0000 (Sat, 14 Sep 2013) Log Message: ----------- Removed typo in static string... replaced with more 'correct' class getSimpleName call. Modified Paths: -------------- trunk/src/openrpg2/server/core/modules/clientlist/ClientList.java Modified: trunk/src/openrpg2/server/core/modules/clientlist/ClientList.java =================================================================== --- trunk/src/openrpg2/server/core/modules/clientlist/ClientList.java 2013-09-14 16:16:12 UTC (rev 97) +++ trunk/src/openrpg2/server/core/modules/clientlist/ClientList.java 2013-09-14 17:15:39 UTC (rev 98) @@ -69,7 +69,7 @@ @Override protected void doRegistration() { this.modCom.registerGUIComponent("Client List", panel); - this.modCom.registerEventInterest(this, "GroupSeverModule", GroupServerModule.EVENT_GROUPDATA_CHANGED); + this.modCom.registerEventInterest(this, GroupServerModule.class.getSimpleName(), GroupServerModule.EVENT_GROUPDATA_CHANGED); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |