Fix bug 57060 for/in loop enumerates array elements as numbers, not strings

This commit is contained in:
nboyd%atg.com 2000-10-30 19:46:02 +00:00
parent 0470e048ab
commit 2a73169e97
2 changed files with 2 additions and 2 deletions

View File

@ -2169,7 +2169,7 @@ class IdEnumeration implements Enumeration {
break;
}
}
return result;
return ScriptRuntime.toString(result);
}
private Object next;

View File

@ -2169,7 +2169,7 @@ class IdEnumeration implements Enumeration {
break;
}
}
return result;
return ScriptRuntime.toString(result);
}
private Object next;