Remove unnecessary arguments

This commit is contained in:
Andrea Cavalli 2023-07-22 00:56:43 +02:00
parent 0e2b3677c4
commit e83270906e
2 changed files with 2 additions and 4 deletions

View File

@ -128,8 +128,7 @@ public class LLLocalDictionary implements LLDictionary {
String databaseName, String databaseName,
String columnName, String columnName,
Function<LLSnapshot, Snapshot> snapshotResolver, Function<LLSnapshot, Snapshot> snapshotResolver,
UpdateMode updateMode, UpdateMode updateMode) {
DatabaseOptions databaseOptions) {
requireNonNull(db); requireNonNull(db);
this.db = db; this.db = db;
this.cfh = db.getColumnFamilyHandle(); this.cfh = db.getColumnFamilyHandle();

View File

@ -1142,8 +1142,7 @@ public class LLLocalKeyValueDatabase extends Backuppable implements LLKeyValueDa
name, name,
ColumnUtils.toString(columnName), ColumnUtils.toString(columnName),
this::getSnapshotLambda, this::getSnapshotLambda,
updateMode, updateMode
databaseOptions
); );
} catch (RocksDBException e) { } catch (RocksDBException e) {
throw new DBException(e); throw new DBException(e);