From 383801bbb9e64717dcc34660ca8c7bd9c6c9ac5d Mon Sep 17 00:00:00 2001
From: Andreas Schildbach
Date: Wed, 13 Sep 2017 11:59:12 +0200
Subject: [PATCH] Wallet: Add JavaDoc link from autosaveToFile() to
saveToFile().
---
core/src/main/java/org/bitcoinj/wallet/Wallet.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/core/src/main/java/org/bitcoinj/wallet/Wallet.java b/core/src/main/java/org/bitcoinj/wallet/Wallet.java
index 6a02afaa8..d4f753865 100644
--- a/core/src/main/java/org/bitcoinj/wallet/Wallet.java
+++ b/core/src/main/java/org/bitcoinj/wallet/Wallet.java
@@ -1404,8 +1404,8 @@ public class Wallet extends BaseTaggableObject
* In this way disk IO can be rate limited. It's a good idea to set this as otherwise the wallet can change very
* frequently, eg if there are a lot of transactions in it or during block sync, and there will be a lot of redundant
* writes. Note that when a new key is added, that always results in an immediate save regardless of
- * delayTime. You should still save the wallet manually when your program is about to shut down as the JVM
- * will not wait for the background thread.
+ * delayTime. You should still save the wallet manually using {@link Wallet#saveToFile(File)} when your program
+ * is about to shut down as the JVM will not wait for the background thread.
*
* An event listener can be provided. If a delay >0 was specified, it will be called on a background thread
* with the wallet locked when an auto-save occurs. If delay is zero or you do something that always triggers