mirror of
https://github.com/bisq-network/bisq.git
synced 2025-03-13 11:09:10 +01:00
Fix typo
This commit is contained in:
parent
d18b243322
commit
c797317c0d
1 changed files with 2 additions and 2 deletions
|
@ -188,10 +188,10 @@ public class PersistenceManager<T extends PersistableEnvelope> {
|
|||
this.initialize(persistable, persistable.getDefaultStorageFileName(), source);
|
||||
}
|
||||
|
||||
public void initialize(T persistable, String fileName, Source sourcce) {
|
||||
public void initialize(T persistable, String fileName, Source source) {
|
||||
this.persistable = persistable;
|
||||
this.fileName = fileName;
|
||||
this.source = sourcce;
|
||||
this.source = source;
|
||||
storageFile = new File(dir, fileName);
|
||||
ALL_PERSISTENCE_MANAGERS.put(fileName, this);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue