Skip to content

Commit 437c9d0

Browse files
committed
Fix several JavaDoc issues
1 parent 4e48ac4 commit 437c9d0

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

core/src/main/java/eu/bittrade/libs/steemj/base/models/operations/VoteOperation.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public class VoteOperation extends Operation {
4040
* {@link #setAuthor(AccountName)}.
4141
* @param permlink
4242
* Set the permanent link of the post/comment to vote for.
43-
* {@link #setPermlink(String)}.
43+
* {@link #setPermlink(Permlink)}.
4444
* @param weight
4545
* Set the voting weight. {@link #setWeight(short)}.
4646
* @throws InvalidParameterException
@@ -58,9 +58,8 @@ public VoteOperation(@JsonProperty("voter") AccountName voter, @JsonProperty("au
5858
}
5959

6060
/**
61-
* Like {@link #VoteOperation(AccountName, AccountName, String, short)
62-
* VoteOperation(AccountName, AccountName, String, short)}, but will use a
63-
* default weight of '0'.
61+
* Like {@link #VoteOperation(AccountName, AccountName, Permlink, short)},
62+
* but will use a default weight of '0'.
6463
*
6564
* @param voter
6665
* Set the account that votes. {@link #setVoter(AccountName)}.

core/src/main/java/eu/bittrade/libs/steemj/base/models/operations/WitnessUpdateOperation.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public class WitnessUpdateOperation extends Operation {
7070
* {@link #setBlockSigningKey(PublicKey)}).
7171
* @param properties
7272
* The chain properties the witness is voting for (see
73-
* {@link #setChainProperties}).
73+
* {@link #setProperties(ChainProperties)}).
7474
* @param fee
7575
* The fee to pay for this update (see {@link #setFee(Asset)}).
7676
*/

core/src/main/java/eu/bittrade/libs/steemj/communication/BlockAppliedCallback.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@
77
/**
88
* This abstract class is used as a standard wrapper for a block applied
99
* callback. It is needed to handle callbacks of the
10-
* {@link eu.bittrade.libs.steemj.Steemj#setBlockAppliedCallback(BlockAppliedCallback)
11-
* setBlockAppliedCallback(BlockAppliedCallback)}.
10+
* {@link eu.bittrade.libs.steemj.SteemJ#setBlockAppliedCallback(BlockAppliedCallback)}.
1211
*
1312
* @author <a href="http://steemit.com/@dez1337">dez1337</a>
1413
*/

0 commit comments

Comments
 (0)