Fixed BOLD issue. There you are Matt :)

git-svn-id: http://svn.igniterealtime.org/svn/repos/spark/trunk@4875 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
Derek DeMoro
2006-08-10 05:57:57 +00:00
committed by derek
parent f9a5eca9ba
commit 00fab4f4f7
2 changed files with 3 additions and 3 deletions

View File

@ -419,8 +419,8 @@ public class ChatManager implements MessageEventNotificationListener {
* Checks every room every 30 seconds to see if it's timed out.
*/
private void checkRoomsForTimeout() {
int delay = 60000; // delay for 5 sec.
int period = 30000; // repeat every sec.
int delay = 60000; // delay for 1 minute
int period = 30000; // repeat every 30 seconds.
Timer timer = new Timer();
timer.scheduleAtFixedRate(new TimerTask() {