Remove unnecessary arguments
This commit is contained in:
parent
0e2b3677c4
commit
e83270906e
@ -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();
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user