Skip to content

Commit

Permalink
fix javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
woodser committed Feb 11, 2023
1 parent f71545b commit 30fad78
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 22 deletions.
Binary file modified docs/member-search-index.zip
Binary file not shown.
2 changes: 2 additions & 0 deletions docs/monero/common/TaskLooper.html
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,8 @@ <h4>start</h4>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>periodInMs</code> - the loop period in milliseconds</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>this instance for chaining</dd>
</dl>
</li>
</ul>
Expand Down
12 changes: 3 additions & 9 deletions docs/monero/wallet/MoneroWallet.html
Original file line number Diff line number Diff line change
Expand Up @@ -2140,9 +2140,7 @@ <h4>getTx</h4>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>txHash</code> - is the hash of a transaction to get</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the identified transactions</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code>MoneroError</code> - if the transaction is not found</dd>
<dd>the identified transaction or throw if not found</dd>
</dl>
</li>
</ul>
Expand Down Expand Up @@ -2173,9 +2171,7 @@ <h4>getTxs</h4>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>txHashes</code> - are hashes of transactions to get</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the identified transactions</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code>MoneroError</code> - if a transaction is not found</dd>
<dd>the identified transactions or throw if a transaction is not found</dd>
</dl>
</li>
</ul>
Expand All @@ -2191,9 +2187,7 @@ <h4>getTxs</h4>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>txHashes</code> - are hashes of transactions to get</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the identified transactions</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code>MoneroError</code> - if a transaction is not found</dd>
<dd>the identified transactions or throw if a transaction is not found</dd>
</dl>
</li>
</ul>
Expand Down
6 changes: 3 additions & 3 deletions docs/monero/wallet/MoneroWalletFull.html
Original file line number Diff line number Diff line change
Expand Up @@ -3741,7 +3741,7 @@ <h4>getTx</h4>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>txHash</code> - is the hash of a transaction to get</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the identified transactions</dd>
<dd>the identified transaction or throw if not found</dd>
</dl>
</li>
</ul>
Expand Down Expand Up @@ -3778,7 +3778,7 @@ <h4>getTxs</h4>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>txHashes</code> - are hashes of transactions to get</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the identified transactions</dd>
<dd>the identified transactions or throw if a transaction is not found</dd>
</dl>
</li>
</ul>
Expand All @@ -3797,7 +3797,7 @@ <h4>getTxs</h4>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>txHashes</code> - are hashes of transactions to get</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the identified transactions</dd>
<dd>the identified transactions or throw if a transaction is not found</dd>
</dl>
</li>
</ul>
Expand Down
6 changes: 3 additions & 3 deletions docs/monero/wallet/MoneroWalletRpc.html
Original file line number Diff line number Diff line change
Expand Up @@ -3806,7 +3806,7 @@ <h4>getTx</h4>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>txHash</code> - is the hash of a transaction to get</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the identified transactions</dd>
<dd>the identified transaction or throw if not found</dd>
</dl>
</li>
</ul>
Expand Down Expand Up @@ -3843,7 +3843,7 @@ <h4>getTxs</h4>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>txHashes</code> - are hashes of transactions to get</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the identified transactions</dd>
<dd>the identified transactions or throw if a transaction is not found</dd>
</dl>
</li>
</ul>
Expand All @@ -3862,7 +3862,7 @@ <h4>getTxs</h4>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>txHashes</code> - are hashes of transactions to get</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the identified transactions</dd>
<dd>the identified transactions or throw if a transaction is not found</dd>
</dl>
</li>
</ul>
Expand Down
2 changes: 1 addition & 1 deletion docs/overview-summary.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (11.0.11) on Sat Feb 11 14:21:58 EST 2023 -->
<!-- Generated by javadoc (11.0.11) on Sat Feb 11 15:12:04 EST 2023 -->
<title>Generated Documentation (Untitled)</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<script type="text/javascript">window.location.replace('index.html')</script>
Expand Down
Binary file modified docs/package-search-index.zip
Binary file not shown.
Binary file modified docs/type-search-index.zip
Binary file not shown.
1 change: 1 addition & 0 deletions src/main/java/monero/common/TaskLooper.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ public Runnable getTask() {
* Start the task loop.
*
* @param periodInMs the loop period in milliseconds
* @return this instance for chaining
*/
public synchronized TaskLooper start(long periodInMs) {
synchronized (this) {
Expand Down
9 changes: 3 additions & 6 deletions src/main/java/monero/wallet/MoneroWallet.java
Original file line number Diff line number Diff line change
Expand Up @@ -494,8 +494,7 @@ public interface MoneroWallet {
* Get a wallet transaction by hash.
*
* @param txHash is the hash of a transaction to get
* @return the identified transactions
* @throws MoneroError if the transaction is not found
* @return the identified transaction or throw if not found
*/
public MoneroTxWallet getTx(String txHash);

Expand All @@ -511,17 +510,15 @@ public interface MoneroWallet {
* Get wallet transactions by hash.
*
* @param txHashes are hashes of transactions to get
* @return the identified transactions
* @throws MoneroError if a transaction is not found
* @return the identified transactions or throw if a transaction is not found
*/
public List<MoneroTxWallet> getTxs(String... txHashes);

/**
* Get wallet transactions by hash.
*
* @param txHashes are hashes of transactions to get
* @return the identified transactions
* @throws MoneroError if a transaction is not found
* @return the identified transactions or throw if a transaction is not found
*/
public List<MoneroTxWallet> getTxs(List<String> txHashes);

Expand Down

0 comments on commit 30fad78

Please sign in to comment.