Changed the variable named "enum", since that's a keyword in jdk 1.5

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2964 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2004-02-22 18:52:33 +00:00
parent ebdf693143
commit bfe9cbba04
2 changed files with 7 additions and 7 deletions
@@ -1,5 +1,5 @@
//
// $Id: PresentsClient.java,v 1.63 2004/02/21 00:54:51 mdb Exp $
// $Id: PresentsClient.java,v 1.64 2004/02/22 18:52:33 ray Exp $
package com.threerings.presents.server;
@@ -463,8 +463,8 @@ public class PresentsClient
*/
protected void clearSubscrips (boolean verbose)
{
for (Iterator enum = _subscrips.elements(); enum.hasNext(); ) {
DObject object = (DObject)enum.next();
for (Iterator itr = _subscrips.elements(); itr.hasNext(); ) {
DObject object = (DObject)itr.next();
if (verbose) {
Log.info("Clearing subscription [client=" + this +
", obj=" + object.getOid() + "].");