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 columnName,
Function<LLSnapshot, Snapshot> snapshotResolver,
UpdateMode updateMode,
DatabaseOptions databaseOptions) {
UpdateMode updateMode) {
requireNonNull(db);
this.db = db;
this.cfh = db.getColumnFamilyHandle();

View File

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