This commit is contained in:
norris%netscape.com 1999-05-18 22:54:15 +00:00
Родитель 1d4a7add30
Коммит d2be04fb36
2 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -113,7 +113,9 @@ public class NativeArray extends ScriptableObject {
if (ScriptRuntime.toUint32(d) == d &&
ScriptRuntime.numberToString(d).equals(id) &&
this.length <= d && d != 4294967295.0)
{
this.length = (long)d + 1;
}
super.put(id, start, value);
}

Просмотреть файл

@ -113,7 +113,9 @@ public class NativeArray extends ScriptableObject {
if (ScriptRuntime.toUint32(d) == d &&
ScriptRuntime.numberToString(d).equals(id) &&
this.length <= d && d != 4294967295.0)
{
this.length = (long)d + 1;
}
super.put(id, start, value);
}