hermens 16 years ago
parent 7b12e77a63
commit 2437beb96c

@ -152,7 +152,16 @@ public class kelondroTree extends kelondroCachedRecords implements kelondroIndex
} }
public boolean has(final byte[] key) { public boolean has(final byte[] key) {
throw new UnsupportedOperationException("has should not be used with kelondroTree."); boolean result;
synchronized (writeSearchObj) {
try {
writeSearchObj.process(key);
result = writeSearchObj.found();
} catch (final IOException e) {
result = false;
}
}
return result;
} }
// Returns the value to which this map maps the specified key. // Returns the value to which this map maps the specified key.

Loading…
Cancel
Save