Fix recursive call bug for database

This commit is contained in:
nicksavers 2014-08-06 01:02:09 +02:00
parent d895438c31
commit 6f3fc15b8a
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ public class DatabaseImpl implements Database {
/** Delete object (key) from db **/
public void delete(byte[] key) {
delete(key);
db.delete(key);
}
public DBIterator iterator() {