diff options
Diffstat (limited to 'htroot/IndexControl_p.java')
| -rw-r--r-- | htroot/IndexControl_p.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/htroot/IndexControl_p.java b/htroot/IndexControl_p.java index 1fa294789..c8543a8aa 100644 --- a/htroot/IndexControl_p.java +++ b/htroot/IndexControl_p.java @@ -123,7 +123,7 @@ public class IndexControl_p { if (delurl || delurlref) {
// generate an urlx array
indexContainer index = null;
- index = switchboard.wordIndex.getContainer(keyhash, null, -1);
+ index = switchboard.wordIndex.getContainer(keyhash, null);
Iterator en = index.entries();
int i = 0;
urlx = new String[index.size()];
@@ -250,7 +250,7 @@ public class IndexControl_p { indexContainer index;
String result;
long starttime = System.currentTimeMillis();
- index = switchboard.wordIndex.getContainer(keyhash, null, -1);
+ index = switchboard.wordIndex.getContainer(keyhash, null);
// built urlCache
Iterator urlIter = index.entries();
HashMap knownURLs = new HashMap();
@@ -490,7 +490,7 @@ public class IndexControl_p { serverObjects prop = new serverObjects();
indexContainer index = null;
try {
- index = switchboard.wordIndex.getContainer(keyhash, null, -1);
+ index = switchboard.wordIndex.getContainer(keyhash, null);
prop.put("genUrlList_keyHash", keyhash);
|
