Fix thread name

This commit is contained in:
chimp1984 2020-10-21 13:56:52 -05:00
parent 01ab16abe5
commit 997c3a0932
No known key found for this signature in database
GPG Key ID: 9801B4EC591F90E3

View File

@ -239,7 +239,7 @@ public class PersistenceManager<T extends PersistableEnvelope> {
} else {
orElse.run();
}
}, "BisqExecutable-read-" + fileName).start();
}, "PersistenceManager-read-" + fileName).start();
}
// API for synchronous reading of data. Not recommended to be used in application code.