Skip to content

Commit dc2d1d5

Browse files
committed
Correct empty <p> tags
1 parent 92cf816 commit dc2d1d5

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

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

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
* Original adaption from Apache Hive. That adaption contains a {@code hash64} method that is not part of the original
4646
* MurmurHash3 code. It is not recommended to use these methods. They will be removed in a future release. To obtain a
4747
* 64-bit hash use half of the bits from the {@code hash128x64} methods using the input data converted to bytes.
48-
* <p>
48+
* </p>
4949
*
5050
* @see <a href="https://en.wikipedia.org/wiki/MurmurHash">MurmurHash</a>
5151
* @see <a href="https://github.com/aappleby/smhasher/blob/master/src/MurmurHash3.cpp"> Original MurmurHash3 c++
@@ -215,7 +215,7 @@ public static int hash32(final long data, final int seed) {
215215
*
216216
* <p>This implementation contains a sign-extension bug in the finalization step of
217217
* any bytes left over from dividing the length by 4. This manifests if any of these
218-
* bytes are negative.<p>
218+
* bytes are negative.</p>
219219
*
220220
* @param data The input byte array
221221
* @return The 32-bit hash
@@ -244,7 +244,7 @@ public static int hash32(final byte[] data) {
244244
*
245245
* <p>This implementation contains a sign-extension bug in the finalization step of
246246
* any bytes left over from dividing the length by 4. This manifests if any of these
247-
* bytes are negative.<p>
247+
* bytes are negative.</p>
248248
*
249249
* @param data The input string
250250
* @return The 32-bit hash
@@ -270,7 +270,7 @@ public static int hash32(final String data) {
270270
*
271271
* <p>This implementation contains a sign-extension bug in the finalization step of
272272
* any bytes left over from dividing the length by 4. This manifests if any of these
273-
* bytes are negative.<p>
273+
* bytes are negative.</p>
274274
*
275275
* @param data The input byte array
276276
* @param length The length of array
@@ -294,7 +294,7 @@ public static int hash32(final byte[] data, final int length) {
294294
*
295295
* <p>This implementation contains a sign-extension bug in the finalization step of
296296
* any bytes left over from dividing the length by 4. This manifests if any of these
297-
* bytes are negative.<p>
297+
* bytes are negative.</p>
298298
*
299299
* @param data The input byte array
300300
* @param length The length of array
@@ -316,7 +316,7 @@ public static int hash32(final byte[] data, final int length, final int seed) {
316316
*
317317
* <p>This implementation contains a sign-extension bug in the finalization step of
318318
* any bytes left over from dividing the length by 4. This manifests if any of these
319-
* bytes are negative.<p>
319+
* bytes are negative.</p>
320320
*
321321
* @param data The input byte array
322322
* @param offset The offset of data
@@ -644,7 +644,7 @@ public static long hash64(final byte[] data, final int offset, final int length)
644644
* {@link #hash128(byte[], int, int, int)}.</p>
645645
*
646646
* <p>Use of this method is not advised. Use the first long returned from
647-
* {@link #hash128x64(byte[], int, int, int)}.<p>
647+
* {@link #hash128x64(byte[], int, int, int)}.</p>
648648
*
649649
* @param data The input byte array
650650
* @param offset The offset of data
@@ -783,7 +783,7 @@ public static long[] hash128(final String data) {
783783
* from Austin Applyby's original MurmurHash3 {@code c++} code in SMHasher.</p>
784784
*
785785
* <p>This implementation contains a sign-extension bug in the seed initialization.
786-
* This manifests if the seed is negative.<p>
786+
* This manifests if the seed is negative.</p>
787787
*
788788
* @param data The input byte array
789789
* @param offset The first element of array
@@ -1189,7 +1189,7 @@ private static int orBytes(final byte b1, final byte b2, final byte b3, final by
11891189
*
11901190
* <p>This implementation contains a sign-extension bug in the finalization step of
11911191
* any bytes left over from dividing the length by 4. This manifests if any of these
1192-
* bytes are negative.<p>
1192+
* bytes are negative.</p>
11931193
*
11941194
* @deprecated Use IncrementalHash32x86. This corrects the processing of trailing bytes.
11951195
*/

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ public class Soundex implements StringEncoder {
8282
* Such letters aren't encoded (after the first), but they do
8383
* act as separators when dropping duplicate codes.
8484
* The mapping is otherwise the same as for {@link #US_ENGLISH}
85-
* <p>
85+
*
8686
* @since 1.11
8787
*/
8888
public static final Soundex US_ENGLISH_SIMPLIFIED = new Soundex(US_ENGLISH_MAPPING_STRING, false);

0 commit comments

Comments
 (0)