Do not prefetch children in zero-argument HopObject.list(). We leave

it to the app writer to use loadmode=aggressive.
This commit is contained in:
hns 2003-12-19 16:30:59 +00:00
parent e57a939fa0
commit b7a1f113b5

View file

@ -480,7 +480,7 @@ public class HopObject extends ScriptableObject implements Wrapper {
private Scriptable list() {
checkNode();
prefetchChildren(0, 1000);
// prefetchChildren(0, 1000);
Enumeration e = node.getSubnodes();
ArrayList a = new ArrayList();