3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-02-12 10:15:52 +00:00

Wallet: add a missing @Nullable annotation.

This commit is contained in:
Mike Hearn 2013-07-29 17:17:58 +02:00
parent 016837a593
commit da2a321c23

View File

@ -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 * @param eventListener callback to be informed when the auto-save thread does things, or null
*/ */
public WalletFiles autosaveToFile(File f, long delayTime, TimeUnit timeUnit, public WalletFiles autosaveToFile(File f, long delayTime, TimeUnit timeUnit,
WalletFiles.Listener eventListener) { @Nullable WalletFiles.Listener eventListener) {
lock.lock(); lock.lock();
try { try {
checkState(vFileManager == null, "Already auto saving this wallet."); checkState(vFileManager == null, "Already auto saving this wallet.");