Skip to content

Commit 14b5d6a

Browse files
committed
Javadoc: Empty Javadoc line before the 1st tag.
1 parent 2bb4fd9 commit 14b5d6a

File tree

6 files changed

+9
-3
lines changed

6 files changed

+9
-3
lines changed

src/main/java/org/apache/commons/codec/digest/Blake3.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -498,6 +498,7 @@ public byte[] doFinalize(final int nrBytes) {
498498

499499
/**
500500
* Resets this instance back to its initial state when it was first constructed.
501+
*
501502
* @return {@code this} instance.
502503
*/
503504
public Blake3 reset() {

src/main/java/org/apache/commons/codec/digest/HmacAlgorithms.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ public enum HmacAlgorithms {
5959
* <p>
6060
* Every implementation of the Java 8+ platform is required to support this standard MAC algorithm.
6161
* </p>
62+
*
6263
* @since 1.11
6364
*/
6465
HMAC_SHA_224("HmacSHA224"),

src/main/java/org/apache/commons/codec/digest/Md5Crypt.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,7 @@ public static String apr1Crypt(final String keyBytes, final String salt) {
170170
* <p>
171171
* A salt is generated for you using {@link SecureRandom}.
172172
* </p>
173+
*
173174
* @param keyBytes
174175
* plaintext string to hash. Each array element is set to {@code 0} before returning.
175176
* @return the hash value.
@@ -189,6 +190,7 @@ public static String md5Crypt(final byte[] keyBytes) {
189190
* <p>
190191
* A salt is generated for you using the instance of {@link Random} you supply.
191192
* </p>
193+
*
192194
* @param keyBytes
193195
* plaintext string to hash. Each array element is set to {@code 0} before returning.
194196
* @param random

src/main/java/org/apache/commons/codec/language/RefinedSoundex.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ public class RefinedSoundex implements StringEncoder {
4545
* 8: M N
4646
* 9: R
4747
* </pre>
48+
*
4849
* @since 1.4
4950
*/
5051
// ABCDEFGHIJKLMNOPQRSTUVWXYZ

src/main/java/org/apache/commons/codec/language/bm/BeiderMorseEncoder.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,12 +71,12 @@
7171
* <p>
7272
* <strong>Note</strong>: this version of the Beider-Morse encoding is equivalent with v3.4 of the reference implementation.
7373
* </p>
74-
* @see <a href="https://stevemorse.org/phonetics/bmpm.htm">Beider-Morse Phonetic Matching</a>
75-
* @see <a href="https://stevemorse.org/phoneticinfo.htm">Reference implementation</a>
76-
*
7774
* <p>
7875
* This class is Not ThreadSafe.
7976
* </p>
77+
*
78+
* @see <a href="https://stevemorse.org/phonetics/bmpm.htm">Beider-Morse Phonetic Matching</a>
79+
* @see <a href="https://stevemorse.org/phoneticinfo.htm">Reference implementation</a>
8080
* @since 1.6
8181
*/
8282
public class BeiderMorseEncoder implements StringEncoder {

src/main/java/org/apache/commons/codec/net/URLCodec.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ public class URLCodec implements BinaryEncoder, BinaryDecoder, StringEncoder, St
5757
* BitSet of www-form-url safe characters.
5858
* This is a copy of the internal BitSet which is now used for the conversion.
5959
* Changes to this field are ignored.
60+
*
6061
* @deprecated 1.11 Will be removed in 2.0 (CODEC-230)
6162
*/
6263
@Deprecated

0 commit comments

Comments
 (0)