mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2025-02-25 15:10:18 +01:00
Wallet: add a missing @Nullable annotation.
This commit is contained in:
parent
016837a593
commit
da2a321c23
1 changed files with 1 additions and 1 deletions
|
@ -455,7 +455,7 @@ public class Wallet implements Serializable, BlockChainListener, PeerFilterProvi
|
|||
* @param eventListener callback to be informed when the auto-save thread does things, or null
|
||||
*/
|
||||
public WalletFiles autosaveToFile(File f, long delayTime, TimeUnit timeUnit,
|
||||
WalletFiles.Listener eventListener) {
|
||||
@Nullable WalletFiles.Listener eventListener) {
|
||||
lock.lock();
|
||||
try {
|
||||
checkState(vFileManager == null, "Already auto saving this wallet.");
|
||||
|
|
Loading…
Add table
Reference in a new issue